From f6fba252e4a64afe36277f65f7f52a113e3e252b Mon Sep 17 00:00:00 2001 From: oberon Date: Mon, 16 Feb 2026 11:26:36 +0100 Subject: [PATCH] error fix load_global_sounds --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 398d319..42232df 100644 --- a/app.py +++ b/app.py @@ -240,7 +240,7 @@ def control_page(): return redirect(url_for('index')) # Globale Sounds immer laden - global_sounds = load_global_sounds() + global_sounds = load_default_sounds() logger.info(f"Übergebe config an Template: {current_config}") print("DEBUG: config hat channels?", 'channels' in current_config, len(current_config.get('channels', [])))