From 510dc9b8f78f2552127a8f22c91cf63d87080cde Mon Sep 17 00:00:00 2001 From: emmatveev Date: Wed, 27 Nov 2024 16:20:04 +0300 Subject: [PATCH] fix --- daemons/worker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemons/worker.py b/daemons/worker.py index 772c180..6933645 100644 --- a/daemons/worker.py +++ b/daemons/worker.py @@ -54,7 +54,7 @@ class Daemon(base.BaseDaemon, queues.TasksHandlerMixin): 'project': 'pizda-bot', 'name': 'telegram-bot', 'body': { - 'message': text, + 'text': text, 'reply_to_message_id': message_id, 'chat_id': chat_id, } @@ -69,7 +69,7 @@ class Daemon(base.BaseDaemon, queues.TasksHandlerMixin): 'project': 'pizda-bot', 'name': 'telegram-bot', 'body': { - 'message': text, + 'text': text, 'chat_id': chat_id, } }, -- 2.45.2