From 4265def2347af64250616f50a7293de38973e1f0 Mon Sep 17 00:00:00 2001 From: Mike Heath Date: Sat, 18 Feb 2023 02:40:21 -0700 Subject: [PATCH] Allow user FKB config flow to take precendence (#88281) --- homeassistant/components/fully_kiosk/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/fully_kiosk/config_flow.py b/homeassistant/components/fully_kiosk/config_flow.py index f324cdbe0a0..cdd7c7b276b 100644 --- a/homeassistant/components/fully_kiosk/config_flow.py +++ b/homeassistant/components/fully_kiosk/config_flow.py @@ -57,7 +57,7 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): errors["base"] = "unknown" return None - await self.async_set_unique_id(device_info["deviceID"]) + await self.async_set_unique_id(device_info["deviceID"], raise_on_progress=False) self._abort_if_unique_id_configured(updates=user_input) return self.async_create_entry( title=device_info["deviceName"],