Skip to content

Commit

Permalink
Update info.py
Browse files Browse the repository at this point in the history
  • Loading branch information
WebX-Divin authored Feb 10, 2023
1 parent 4e78df9 commit 452da1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions info.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def is_enabled(value, default):
# Bot information
SESSION = environ.get('SESSION', 'Media_search')
API_ID = int(environ.get('API_ID', ''))
API_HASH = int(environ.get('API_HASH', ''))
BOT_TOKEN = int(environ.get('BOT_TOKEN', ''))
API_HASH = environ.get('API_HASH', '')
BOT_TOKEN = environ.get('BOT_TOKEN', '')
# Bot settings
CACHE_TIME = int(environ.get('CACHE_TIME', 300))
USE_CAPTION_FILTER = bool(environ.get('USE_CAPTION_FILTER', False))
Expand Down Expand Up @@ -71,6 +71,6 @@ def is_enabled(value, default):
AUTO_DELETE = True

#Sample
SHORTENER_SITE = "tnlink.in"
SHORTNER_SITE = ""
SHORTNER_API = ""

0 comments on commit 452da1e

Please sign in to comment.