queues #19

Merged
emmatveev merged 13 commits from queues into master 2024-11-27 02:46:59 +03:00
Showing only changes of commit e76cfc7994 - Show all commits

View File

@ -25,4 +25,7 @@ class Daemon(base.Daemon, queues.TasksHandlerMixin):
reply_markup = payload.get('reply_markup')
if reply_markup:
body['reply_markup'] = reply_markup
self.bot.send_message(**body, parse_mode='Markdown')
try:
self.bot.send_message(**body, parse_mode='Markdown')
except Exception as exc:
print('Error', str(exc))