Skip to content

Commit

Permalink
Update __main__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
annndruha committed Sep 7, 2023
1 parent 676e33a commit 046750e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def filter(self, message):
application.add_handler(CommandHandler('start', handler_start, filters=only_text))
application.add_handler(CommandHandler('help', handler_help, filters=only_text))
application.add_handler(CommandHandler('md_guide', handler_md_guide, filters=only_text))
application.add_handler(CommandHandler('issue', handler_message, filters=only_text))
application.add_handler(CommandHandler('issue', handler_message, filters=only_text | only_caption))
application.add_handler(CallbackQueryHandler(handler_button))
application.add_handler(MessageHandler(StartWithBotMention() & only_text, handler_message))
application.add_handler(MessageHandler(StartWithBotMention() & only_caption, handler_message))
Expand Down

0 comments on commit 046750e

Please sign in to comment.