From e0f1e68f8b4fd5ebd8a4d75b6d6988d023964b28 Mon Sep 17 00:00:00 2001 From: 1 Date: Wed, 25 Dec 2024 14:08:35 +0600 Subject: [PATCH] =?UTF-8?q?C=D0=B5=D0=B9=D1=87=D0=B0=D1=81=20=D1=82=D0=BE?= =?UTF-8?q?=D1=87=D0=BD=D0=BE=20=D0=B7=D0=B0=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=D0=B5=D1=823?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/bot/notifications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/app/bot/notifications.py b/backend/app/bot/notifications.py index 33ac0ff..7e77fec 100644 --- a/backend/app/bot/notifications.py +++ b/backend/app/bot/notifications.py @@ -19,13 +19,13 @@ async def send_request_notification(request_data: dict): async with AiohttpSession() as session: bot.session = session await bot.send_message( - chat_id=settings.TELEGRAM_CHAT_ID, + chat_id=5057752127, text=message, parse_mode="HTML", reply_markup=keyboard, ) except Exception as e: - logger.error(f"Error sending Telegram notification: {e}", exc_info=True) + logger.error(f"Error sending Telegram notification1: {e}", exc_info=True) raise