Filter out ignored entries in ssdp step of AVM Fritz!SmartHome (#114574)

filter out ignored entries in ssdp step
pull/114608/head
Michael 2024-04-02 03:48:26 +02:00 committed by GitHub
parent 3513bd0cc5
commit ab2c88353b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ class FritzboxConfigFlow(ConfigFlow, domain=DOMAIN):
return self.async_abort(reason="already_in_progress")
# 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 uuid and not entry.unique_id:
self.hass.config_entries.async_update_entry(entry, unique_id=uuid)