Skip to content

Commit

Permalink
fix: rm filters.Entity
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyqu committed Feb 18, 2024
1 parent 91b3c3e commit c466ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def main():
application.add_handler(CommandHandler("start", handlers.start_handler))
application.add_handler(CallbackQueryHandler(handlers.button_handler))
application.add_handler(
MessageHandler((filters.TEXT | filters.Entity), handlers.message_handler)
MessageHandler(filters.TEXT, handlers.message_handler)
)
application.add_error_handler(handlers.error_handler)

Expand Down

0 comments on commit c466ecc

Please sign in to comment.