next fixxes

This commit is contained in:
oberon 2026-02-16 19:14:17 +01:00
parent 122e071169
commit 6809f15ccd

View File

@ -1,4 +1,6 @@
# app/routes/main.py
import os
from flask import Blueprint, render_template, redirect, url_for, request, jsonify, send_from_directory, current_app
from app.utils.helpers import load_configs, load_default_sounds
from app.state import current_config, reset_state
@ -70,3 +72,5 @@ def soundboard():
sounds = current_config.get('sounds', [])
return render_template('soundboard.html', sounds=sounds, config=current_config)
pass
logger.info(f"Config geladen: {filename} mit {len(current_config.get('channels', []))} Kanälen")