mirror of
https://github.com/home-assistant/core.git
synced 2025-07-10 14:57:09 +00:00
Filter out ignored entries in ssdp step of AVM Fritz!SmartHome (#114574)
filter out ignored entries in ssdp step
This commit is contained in:
parent
3513bd0cc5
commit
ab2c88353b
@ -141,7 +141,7 @@ class FritzboxConfigFlow(ConfigFlow, domain=DOMAIN):
|
|||||||
return self.async_abort(reason="already_in_progress")
|
return self.async_abort(reason="already_in_progress")
|
||||||
|
|
||||||
# update old and user-configured config entries
|
# update old and user-configured config entries
|
||||||
for entry in self._async_current_entries():
|
for entry in self._async_current_entries(include_ignore=False):
|
||||||
if entry.data[CONF_HOST] == host:
|
if entry.data[CONF_HOST] == host:
|
||||||
if uuid and not entry.unique_id:
|
if uuid and not entry.unique_id:
|
||||||
self.hass.config_entries.async_update_entry(entry, unique_id=uuid)
|
self.hass.config_entries.async_update_entry(entry, unique_id=uuid)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user