mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-22 07:07:46 +00:00
🐛 Fix TypeError
exception caused by message
is None
This commit is contained in:
parent
def32d89b9
commit
d386a47ac7
@ -83,11 +83,13 @@ class ErrorHandler(Plugin):
|
||||
try:
|
||||
if update.callback_query:
|
||||
await update.callback_query.answer(content, show_alert=True)
|
||||
else:
|
||||
return
|
||||
if message:
|
||||
reply_text = await message.reply_text(content, reply_markup=buttons, allow_sending_without_reply=True)
|
||||
if filters.ChatType.GROUPS.filter(reply_text):
|
||||
self.add_delete_message_job(reply_text, context=context)
|
||||
self.add_delete_message_job(message, context=context)
|
||||
return
|
||||
except TelegramError as exc:
|
||||
logger.error(self.SEND_MSG_ERROR_NOTICE, update.update_id, exc.message)
|
||||
except Exception as exc:
|
||||
|
Loading…
Reference in New Issue
Block a user