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)