remove mute/unmute, fix vouch callback

This commit is contained in:
2023-05-04 11:42:52 +03:00
parent 41882595b1
commit aa6975e49a
6 changed files with 46 additions and 43 deletions

View File

@@ -53,6 +53,7 @@ async def handle(req):
else:
handle_feedback(msg)
elif str(msg['chat']['id']) == FEEDBACK_CHAT_ID:
print('feedback chat message')
if 'reply_to_message' in msg:
handle_answer(msg)
elif msg['text'] == '/graph':
@@ -83,7 +84,7 @@ async def handle(req):
# wtf
else:
print('UNHANDLED EVENT')
print('unhandled update')
except Exception: