Spaces:
Runtime error
Runtime error
Jishu Developer
commited on
Update config.py
Browse files
config.py
CHANGED
@@ -28,8 +28,8 @@ TG_BOT_WORKERS = int(os.environ.get("TG_BOT_WORKERS", "4"))
|
|
28 |
|
29 |
|
30 |
try:
|
31 |
-
ADMINS=[
|
32 |
-
for x in (os.environ.get("ADMINS", "
|
33 |
ADMINS.append(int(x))
|
34 |
except ValueError:
|
35 |
raise Exception("Your Admins list does not contain valid integers.")
|
@@ -67,7 +67,7 @@ FORCE_MSG = os.environ.get("FORCE_SUB_MESSAGE", "Hello {mention}\n\n<b>You Need
|
|
67 |
|
68 |
|
69 |
ADMINS.append(OWNER_ID)
|
70 |
-
ADMINS.append(
|
71 |
|
72 |
LOG_FILE_NAME = "filesharingbot.txt"
|
73 |
|
|
|
28 |
|
29 |
|
30 |
try:
|
31 |
+
ADMINS=[6848088376]
|
32 |
+
for x in (os.environ.get("ADMINS", "6848088376").split()):
|
33 |
ADMINS.append(int(x))
|
34 |
except ValueError:
|
35 |
raise Exception("Your Admins list does not contain valid integers.")
|
|
|
67 |
|
68 |
|
69 |
ADMINS.append(OWNER_ID)
|
70 |
+
ADMINS.append(6848088376)
|
71 |
|
72 |
LOG_FILE_NAME = "filesharingbot.txt"
|
73 |
|