queues #17

Merged
emmatveev merged 2 commits from queues into dev 2024-11-27 02:44:39 +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))