SmartThings issue with unique_id (#72715)

Co-authored-by: Jan Bouwhuis <jbouwh@users.noreply.github.com>
This commit is contained in:
Alexey Zimarev 2022-05-31 16:35:29 +02:00 committed by GitHub
parent 78cb0e24bc
commit aab3fcad7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -405,7 +405,7 @@ async def _continue_flow(
( (
flow flow
for flow in hass.config_entries.flow.async_progress_by_handler(DOMAIN) for flow in hass.config_entries.flow.async_progress_by_handler(DOMAIN)
if flow["context"]["unique_id"] == unique_id if flow["context"].get("unique_id") == unique_id
), ),
None, None,
) )