This commit is contained in:
parent
ecbe419abb
commit
c8a9936a00
@ -161,7 +161,7 @@ async def send_topchat(message: types.Message):
|
|||||||
glob_ = False
|
glob_ = False
|
||||||
dicks_collection = get_dicks_collection()
|
dicks_collection = get_dicks_collection()
|
||||||
|
|
||||||
if message['text'] == '/topdick':
|
if message['text'].statswith('/topdick'):
|
||||||
top_ = True
|
top_ = True
|
||||||
try:
|
try:
|
||||||
dicks = dicks_collection.find({'chat_id': message.chat.id}, skip=0, limit=1100)
|
dicks = dicks_collection.find({'chat_id': message.chat.id}, skip=0, limit=1100)
|
||||||
@ -169,7 +169,7 @@ async def send_topchat(message: types.Message):
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
print('ошибка DB в /topdick')
|
print('ошибка DB в /topdick')
|
||||||
print(e)
|
print(e)
|
||||||
elif message['text'] == '/globaldick':
|
elif message['text'].statswith('/globaldick'):
|
||||||
glob_ = True
|
glob_ = True
|
||||||
try:
|
try:
|
||||||
dicks = dicks_collection.all( )
|
dicks = dicks_collection.all( )
|
||||||
|
Loading…
Reference in New Issue
Block a user