From 214500e707d84420ec3a7953fd0241671ed65648 Mon Sep 17 00:00:00 2001 From: 0ihgk1uVBLlTBzVo7F9B <0ihgk1uVBLlTBzVo7F9B@protonmail.com> Date: Fri, 4 Sep 2020 14:26:27 +0200 Subject: [PATCH] set registrations to true because there is no key in the config file --- app/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes.py b/app/routes.py index 227a2bc..060af16 100644 --- a/app/routes.py +++ b/app/routes.py @@ -31,7 +31,7 @@ config = json.load(open('yotter-config.json')) ########################## NITTERINSTANCE = config['nitterInstance'] # Must be https://.../ YOUTUBERSS = "https://www.youtube.com/feeds/videos.xml?channel_id=" -REGISTRATIONS = config['registrations'] +REGISTRATIONS = True ########################## #### Global variables ####