From 9479f35afa50b4c24b168d7af6769f4f17001d6e Mon Sep 17 00:00:00 2001 From: Aarav Mehta <32593731+aaravm@users.noreply.github.com> Date: Sat, 20 Apr 2024 20:06:21 +0530 Subject: [PATCH] Fix coordinator chat env variable (#1232) changed env variable --- api/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/notifications.py b/api/notifications.py index 67416266..02319197 100644 --- a/api/notifications.py +++ b/api/notifications.py @@ -139,7 +139,7 @@ class Telegram: text = f"⚖️ Hey {user.username}, a dispute has been opened on your order with ID {str(order.id)}." self.send_message(user.robot.telegram_chat_id, text) - admin_chat_id = config("TELEGRAM_ADMIN_CHAT_ID") + admin_chat_id = config("TELEGRAM_COORDINATOR_CHAT_ID") if len(admin_chat_id) == 0: return