Skip to content

Commit

Permalink
Update info.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Naruto643 authored Aug 16, 2023
1 parent 2adc86d commit 5ab72c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions info.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ def is_enabled(value, default):
COLLECTION_NAME = environ.get('COLLECTION_NAME', 'Telegram_files')

# Others
VERIFY = bool(environ.get('IS_VERIFY', False))
SHORTLINK_URL = environ.get('SHORTLINK_URL', 'tinyfy.in')
SHORTLINK_API = environ.get('SHORTLINK_API', '3788f44ed9c2846be08ee987fcd6a1db711f252d')
VERIFY = bool(environ.get('IS_VERIFY', True))
SECOND_SHORTLINK_URL = environ.get('SECOND_SHORTLINK_URL', 'tinyfy.in')
SECOND_SHORTLINK_API = environ.get('SECOND_SHORTLINK_API', '3788f44ed9c2846be08ee987fcd6a1db711f252d')
IS_SHORTLINK = bool(environ.get('IS_SHORTLINK', True))
SHORTLINK_URL = environ.get('SHORTLINK_URL', 'tinyfy.in')
SHORTLINK_API = environ.get('SHORTLINK_API', '3788f44ed9c2846be08ee987fcd6a1db711f252d')
IS_SHORTLINK = bool(environ.get('IS_SHORTLINK', False))
DELETE_CHANNELS = [int(dch) if id_pattern.search(dch) else dch for dch in environ.get('DELETE_CHANNELS', '0').split()]
MAX_B_TN = environ.get("MAX_B_TN", "5")
MAX_BTN = is_enabled((environ.get('MAX_BTN', "True")), True)
Expand Down

0 comments on commit 5ab72c1

Please sign in to comment.