Skip to content

Commit

Permalink
Update config_flow.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aunefyren committed Feb 5, 2024
1 parent f5b44b9 commit d39fc84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/bluesound_alt/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ async def async_step_user(self, user_input=None):
info = await validate_input(self.hass, user_input)

data = {
CONF_NAME: data[CONF_HOST],
CONF_HOST: data[CONF_NAME],
CONF_NAME: user_input[CONF_HOST],
CONF_HOST: user_input[CONF_NAME],
CONF_PORT: DEFAULT_PORT,
}

Expand Down

0 comments on commit d39fc84

Please sign in to comment.