From 9a9669be052452f3714388caf6841a6b6a44b3b9 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 6 Dec 2025 17:51:01 +0100 Subject: [PATCH] fix --- modules/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/web.py b/modules/web.py index bde2eca..9513397 100644 --- a/modules/web.py +++ b/modules/web.py @@ -13,7 +13,7 @@ app.logger.disabled = True @app.route("/") def home(): global data, data_lock - with data_lock: return repr(data) + with data_lock: return repr(data["playlist"]) def web(): app.run("0.0.0.0", 3001)