mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 22:27:07 +00:00
Fix
This commit is contained in:
parent
bbe804cef3
commit
8419e6429a
@ -474,7 +474,7 @@ def ws_list_entities_exposed_to_assistant(
|
|||||||
entity_id
|
entity_id
|
||||||
for entity_id in chain(exposed_entities.entities, entity_registry.entities)
|
for entity_id in chain(exposed_entities.entities, entity_registry.entities)
|
||||||
if assistant in (entity_settings := async_get_entity_settings(hass, entity_id))
|
if assistant in (entity_settings := async_get_entity_settings(hass, entity_id))
|
||||||
and entity_settings[assistant]["should_expose"]
|
and entity_settings[assistant].get("should_expose")
|
||||||
]
|
]
|
||||||
connection.send_result(msg["id"], {"exposed_entities": result})
|
connection.send_result(msg["id"], {"exposed_entities": result})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user