env: don't crash the server if TELEGRAM_LINK isn't present

remotes/1693176582716663532/tmp_refs/heads/watchparty
justcool393 2022-10-24 15:58:23 -05:00
parent 03cd4246ff
commit 67a6676bf8
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ MAILGUN_KEY = environ.get("MAILGUN_KEY").strip()
DESCRIPTION = environ.get("DESCRIPTION").strip()
CF_KEY = environ.get("CF_KEY").strip()
CF_ZONE = environ.get("CF_ZONE").strip()
TELEGRAM_LINK = environ.get("TELEGRAM_LINK").strip()
TELEGRAM_LINK = environ.get("TELEGRAM_LINK", "blahblahblah").strip()
GLOBAL = environ.get("GLOBAL", "").strip()
blackjack = environ.get("BLACKJACK", "").strip()