From 174d14a533178dd18059380636e9f4f4b71f6497 Mon Sep 17 00:00:00 2001 From: Justin Donofrio Date: Tue, 26 Nov 2024 05:21:23 -0500 Subject: [PATCH] fix index in web ui --- src/onthespot/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/onthespot/web.py b/src/onthespot/web.py index d0b9981..ea12142 100644 --- a/src/onthespot/web.py +++ b/src/onthespot/web.py @@ -100,7 +100,7 @@ def clear_items(): return jsonify(success=True) @app.route('/download_queue') -def index(): +def download_queue(): config_path = os.path.join(config_dir(), 'onthespot', 'otsconfig.json') with open(config_path, 'r') as config_file: config_data = json.load(config_file)