From caaa32ea13cc09f2740a9d34e558fee0b9dfb004 Mon Sep 17 00:00:00 2001 From: Tola Leng Date: Sat, 17 May 2025 20:56:31 +0800 Subject: [PATCH] Updated telegram notification --- application/src/services/notification/telegramService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/src/services/notification/telegramService.ts b/application/src/services/notification/telegramService.ts index 2ac773f..cc5660f 100644 --- a/application/src/services/notification/telegramService.ts +++ b/application/src/services/notification/telegramService.ts @@ -21,8 +21,8 @@ export async function sendTelegramNotification( }, null, 2)); // Use provided credentials if available, otherwise use config - const chatId = config.telegram_chat_id || "-1002471970362"; - const botToken = config.bot_token || "7581526325:AAFZgmn9hzc3dpBWl9uLUhcqXRDx5D16e48"; + const chatId = config.telegram_chat_id || "-10345353455465"; + const botToken = config.bot_token || "7581526325:AAFZgmn9hz436ret3453454"; if (!chatId || !botToken) { console.error("Missing Telegram configuration - Chat ID:", chatId, "Bot token present:", !!botToken);