From bc53cdd6eb8a7dd198b463aa0d02ed4658fb9f65 Mon Sep 17 00:00:00 2001 From: ErikV7 <61889811+ErikV7-official@users.noreply.github.com> Date: Mon, 15 Mar 2021 23:51:11 -0300 Subject: [PATCH] Fixed little bug of API HASH --- sample_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample_config.py b/sample_config.py index ef5a88df4..2db5a171c 100644 --- a/sample_config.py +++ b/sample_config.py @@ -7,7 +7,7 @@ class Config(object): TG_BOT_TOKEN = os.environ.get("TG_BOT_TOKEN", "") # The Telegram API things APP_ID = int(os.environ.get("APP_ID", 12345)) - API_HASH = os.environ.get("API_HASH") + API_HASH = os.environ.get("API_HASH", "") # Get these values from my.telegram.org # Array to store users who are authorized to use the bot AUTH_USERS = set(int(x) for x in os.environ.get("AUTH_USERS", "").split())