From 95aac1d80962b0814b2a3813846a754cc5b97545 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20G=C3=BChne?= Date: Tue, 7 Apr 2026 12:32:06 +0200 Subject: [PATCH] =?UTF-8?q?Cleanup:=20interne=20IP=20durch=20=C3=B6ffentli?= =?UTF-8?q?che=20Domain=20ersetzen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - https://gitea.bitfire.work → https://gitea.bitfire.work in allen Dateien - Vorausgefülltes Default-Passwort aus config_flow.py entfernt - DEFAULT_MOUNT auf /stream korrigiert (war noch /stream.mp3) Co-Authored-By: Claude Sonnet 4.6 --- custom_components/busch_radio_spotify/config_flow.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/custom_components/busch_radio_spotify/config_flow.py b/custom_components/busch_radio_spotify/config_flow.py index d88b9d5..1d471c1 100644 --- a/custom_components/busch_radio_spotify/config_flow.py +++ b/custom_components/busch_radio_spotify/config_flow.py @@ -24,8 +24,7 @@ _LOGGER = logging.getLogger(__name__) DEFAULT_HOST = "localhost" DEFAULT_PORT = 8000 -DEFAULT_MOUNT = "/stream.mp3" -DEFAULT_PASSWORD = "busch-radio-geheim" +DEFAULT_MOUNT = "/stream" async def _test_icecast_connection( @@ -98,7 +97,7 @@ class BuschRadioSpotifyConfigFlow( vol.Coerce(int), vol.Range(min=1, max=65535) ), vol.Required(CONF_MOUNT, default=DEFAULT_MOUNT): str, - vol.Required(CONF_PASSWORD, default=DEFAULT_PASSWORD): str, + vol.Required(CONF_PASSWORD): str, } )