diff --git a/handlers/useful.py b/handlers/useful.py index f723472..22cb4d7 100644 --- a/handlers/useful.py +++ b/handlers/useful.py @@ -192,8 +192,12 @@ def latest_handle_messages(message: Message, bot: TeleBot): """ignore""" chat_id = message.chat.id chat_user_id = message.from_user.id + # if not text, ignore + if message.text is None: + return + # if is bot command, ignore - if message.text and message.text.startswith("/"): + if message.text.startswith("/"): return # start command ignore elif message.text.startswith( @@ -218,9 +222,6 @@ def latest_handle_messages(message: Message, bot: TeleBot): # answer_it command ignore elif message.text.startswith("answer_it"): return - # if not text, ignore - elif not message.text: - return else: if chat_user_dict.get(chat_user_id): message.text += chat_message_dict[chat_id].text