From 61ce002e451b8b99f37c26f4adde3785a6d01f48 Mon Sep 17 00:00:00 2001 From: GilbN Date: Sun, 3 Oct 2021 18:18:13 +0200 Subject: [PATCH] only add non deprecated apps to themes.json --- themes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes.py b/themes.py index 32d4a207..9bfe379d 100644 --- a/themes.py +++ b/themes.py @@ -86,7 +86,7 @@ def create_json(app_folders: list = None, themes: list = None, no_sub_folders=Fa app: { "base_css": f"https://{DOMAIN}/CSS/themes/{app}/{app}-base.css?sha={SHAS.get(f'{app}-base.css')}", "addons": ADDONS["addons"][app] if app in ADDONS["addons"] else {} - } for app in app_folders + } for app in app_folders if not isfile(f'./CSS/themes/{app}/.deprecated') } } )