Skip to content

Commit

Permalink
Update info.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shiv9969 authored Nov 15, 2024
1 parent 46b936d commit c6346af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit c6346af

Please sign in to comment.