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, } )