Skip to content

Commit

Permalink
fix: change duplicated CONF_URL to CONF_HASS_URL
Browse files Browse the repository at this point in the history
lines 755-756
  • Loading branch information
danielbrunt57 authored Aug 4, 2024
1 parent 335d26d commit 9b0d456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/alexa_media/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,8 +752,8 @@ def _save_user_input_to_config(self, user_input=None) -> None:
self.config[CONF_EMAIL] = user_input[CONF_EMAIL]
if CONF_PASSWORD in user_input:
self.config[CONF_PASSWORD] = user_input[CONF_PASSWORD]
if CONF_URL in user_input:
self.config[CONF_URL] = user_input[CONF_URL]
if CONF_HASS_URL in user_input:
self.config[CONF_HASS_URL] = user_input[CONF_HASS_URL]
if CONF_PUBLIC_URL in user_input:
self.config[CONF_PUBLIC_URL] = user_input[CONF_PUBLIC_URL]
if CONF_SCAN_INTERVAL in user_input:
Expand Down

0 comments on commit 9b0d456

Please sign in to comment.