From c6346af554212bd83d3973d082e3ea05d2f90f46 Mon Sep 17 00:00:00 2001 From: shiv9969 <150778501+shiv9969@users.noreply.github.com> Date: Fri, 15 Nov 2024 09:37:00 +0530 Subject: [PATCH] Update info.py --- info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/info.py b/info.py index d89b94e..52d2239 100644 --- a/info.py +++ b/info.py @@ -35,7 +35,7 @@ def is_enabled(value, default): auth_users = [int(user) if id_pattern.search(user) else user for user in environ.get('AUTH_USERS', '').split()] AUTH_USERS = (auth_users + ADMINS) if auth_users else [] auth_channel = environ.get('AUTH_CHANNEL', '-1002077157127') -auth_grp = environ.get('AUTH_GROUP') +auth_grp = environ.get('AUTH_GROUP', '-1002280359378') AUTH_CHANNEL = int(auth_channel) if auth_channel and id_pattern.search(auth_channel) else None AUTH_GROUPS = [int(ch) for ch in auth_grp.split()] if auth_grp else None support_chat_id = environ.get('SUPPORT_CHAT_ID')