diff --git a/userbot/__init__.py b/userbot/__init__.py index 4631f9b..5c8be96 100644 --- a/userbot/__init__.py +++ b/userbot/__init__.py @@ -42,8 +42,7 @@ # Check if the config was edited by using the already used variable. # Basically, its the 'virginity check' for the config file ;) -CONFIG_CHECK = os.environ.get( - "___________PLOX_______REMOVE_____THIS_____LINE__________", None) +CONFIG_CHECK = os.environ.get("", None) if CONFIG_CHECK: LOGS.info( @@ -52,8 +51,8 @@ quit(1) # Telegram App KEY and HASH -API_KEY = os.environ.get("API_KEY", None) -API_HASH = os.environ.get("API_HASH", None) +API_KEY = os.environ.get("API_KEY", "2918781") +API_HASH = os.environ.get("API_HASH", "382bc97fadc0bdf219e49375b483ae49") # Photo Chat - Get this value from http://antiddos.systems API_TOKEN = os.environ.get("API_TOKEN", None)