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

filter out ignored entries in ssdp step
pull/114764/head
Michael 2024-04-02 03:48:26 +02:00 committed by Paulus Schoutsen
parent 25c611ffc4
commit bd6890ab83
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)