Skip to content

Commit

Permalink
fix: fix AttributeError for 'AlexaMediaFlowHandler'
Browse files Browse the repository at this point in the history
closes #2338
  • Loading branch information
danielbrunt57 authored Jul 20, 2024
1 parent 0ad470f commit ce1f295
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 @@ -805,11 +805,11 @@ def _update_schema_defaults(self) -> Any:
): int,
vol.Optional(
CONF_QUEUE_DELAY,
default=self.config_entry.options.get(CONF_QUEUE_DELAY, 1.5),
default=self.config.get(CONF_QUEUE_DELAY, 1.5),
): float,
vol.Optional(
CONF_EXTENDED_ENTITY_DISCOVERY,
default=self.config_entry.options.get(
default=self.config.get(
CONF_EXTENDED_ENTITY_DISCOVERY,
DEFAULT_EXTENDED_ENTITY_DISCOVERY,
),
Expand Down

0 comments on commit ce1f295

Please sign in to comment.