Spaces:
Paused
Paused
Commit ·
a4ea0e8
1
Parent(s): f71e79b
Update config.py
Browse files
config.py
CHANGED
|
@@ -8,7 +8,7 @@ class Config(object):
|
|
| 8 |
API_HASH = os.environ.get("API_HASH","1ee636feaecb523f12c844416dda70e3")
|
| 9 |
# Get these values from my.telegram.org
|
| 10 |
# Array to store users who are authorized to use the bot
|
| 11 |
-
AUTH_USERS = set(int(x) for x in os.environ.get("AUTH_USERS", "
|
| 12 |
# the download location, where the HTTP Server runs
|
| 13 |
DOWNLOAD_LOCATION = "./DOWNLOADS"
|
| 14 |
# Telegram maximum file upload size
|
|
|
|
| 8 |
API_HASH = os.environ.get("API_HASH","1ee636feaecb523f12c844416dda70e3")
|
| 9 |
# Get these values from my.telegram.org
|
| 10 |
# Array to store users who are authorized to use the bot
|
| 11 |
+
AUTH_USERS = set(int(x) for x in os.environ.get("AUTH_USERS", "").split())
|
| 12 |
# the download location, where the HTTP Server runs
|
| 13 |
DOWNLOAD_LOCATION = "./DOWNLOADS"
|
| 14 |
# Telegram maximum file upload size
|