Skip to content

Commit

Permalink
Damm
Browse files Browse the repository at this point in the history
  • Loading branch information
avipatilpro authored Jan 5, 2022
1 parent 9fecbb5 commit fa23c62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WebStreamer/vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ class Var(object):
URL = "https://{}/".format(FQDN) if ON_HEROKU or NO_PORT else \
"http://{}:{}/".format(FQDN, PORT)
DATABASE_URL = str(getenv('DATABASE_URL'))
PING_INTERVAL = int(getenv('PING_INTERVAL', '500'))
UPDATES_CHANNEL = str(getenv('UPDATES_CHANNEL', None))
BANNED_CHANNELS = list(set(int(x) for x in str(getenv("BANNED_CHANNELS", "-1001296894100")).split()))
BANNED_CHANNELS = list(set(int(x) for x in str(getenv("BANNED_CHANNELS", "-1001296894100")).split()))

0 comments on commit fa23c62

Please sign in to comment.