Cleanup: interne IP durch öffentliche Domain ersetzen

- https://gitea.bitfire.workhttps://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 <noreply@anthropic.com>
This commit is contained in:
Niklas Gühne
2026-04-07 12:32:06 +02:00
parent f7136c0657
commit 95aac1d809

View File

@@ -24,8 +24,7 @@ _LOGGER = logging.getLogger(__name__)
DEFAULT_HOST = "localhost" DEFAULT_HOST = "localhost"
DEFAULT_PORT = 8000 DEFAULT_PORT = 8000
DEFAULT_MOUNT = "/stream.mp3" DEFAULT_MOUNT = "/stream"
DEFAULT_PASSWORD = "busch-radio-geheim"
async def _test_icecast_connection( async def _test_icecast_connection(
@@ -98,7 +97,7 @@ class BuschRadioSpotifyConfigFlow(
vol.Coerce(int), vol.Range(min=1, max=65535) vol.Coerce(int), vol.Range(min=1, max=65535)
), ),
vol.Required(CONF_MOUNT, default=DEFAULT_MOUNT): str, vol.Required(CONF_MOUNT, default=DEFAULT_MOUNT): str,
vol.Required(CONF_PASSWORD, default=DEFAULT_PASSWORD): str, vol.Required(CONF_PASSWORD): str,
} }
) )