Skip to content

Commit

Permalink
Update info.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shiv9969 authored Sep 7, 2024
1 parent df0c23c commit 194efb8
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 @@ -31,7 +31,7 @@ def is_enabled(value, default):
# Admins, Channels & Users
ADMINS = [int(admin) if id_pattern.search(admin) else admin for admin in environ.get('ADMINS', '1991522624 1525203313').split()]
OWNER_USER_NAME = environ.get("OWNER_USER_NAME", "Assaulter_shiv") # widout 👉 @
CHANNELS = [int(ch) if id_pattern.search(ch) else ch for ch in environ.get('CHANNELS', '-1001971879597 -1001882174994 -1001999921860 -1001811397053 -1002169631580').split()]
CHANNELS = [int(ch) if id_pattern.search(ch) else ch for ch in environ.get('CHANNELS', '-1001971879597').split()]
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')
Expand Down

0 comments on commit 194efb8

Please sign in to comment.