mirror of
https://gitlab.com/questable/questable_bot
synced 2025-04-04 14:26:52 +02:00
Change CommandHandler to MessageHandler for unknown.
This commit is contained in:
parent
75eb985f94
commit
28d2dc4244
8
bot.py
8
bot.py
@ -488,12 +488,12 @@ dispatcher.add_handler(cancel)
|
|||||||
handler = MessageHandler(Filters.text, lambda x, y: message_handling(x, y, db))
|
handler = MessageHandler(Filters.text, lambda x, y: message_handling(x, y, db))
|
||||||
dispatcher.add_handler(handler)
|
dispatcher.add_handler(handler)
|
||||||
|
|
||||||
unknown = CommandHandler(Filters.command, lambda x, y: message_handling(x, y,
|
|
||||||
db))
|
|
||||||
dispatcher.add_handler(unknown)
|
|
||||||
|
|
||||||
quest_handler = RegexHandler(r"/[Ss]?[Qq]_\d+", lambda x, y:
|
quest_handler = RegexHandler(r"/[Ss]?[Qq]_\d+", lambda x, y:
|
||||||
quest_handling(x, y, db))
|
quest_handling(x, y, db))
|
||||||
dispatcher.add_handler(quest_handler)
|
dispatcher.add_handler(quest_handler)
|
||||||
|
|
||||||
|
unknown = MessageHandler(Filters.command, lambda x, y: message_handling(x, y,
|
||||||
|
db))
|
||||||
|
dispatcher.add_handler(unknown)
|
||||||
|
|
||||||
updater.start_polling()
|
updater.start_polling()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user