mirror of
https://github.com/home-assistant/core.git
synced 2025-08-05 13:45:12 +02:00
Fix websocket search for related (#48603)
Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
This commit is contained in:
@@ -19,7 +19,6 @@ async def async_setup(hass: HomeAssistant, config: dict):
|
||||
return True
|
||||
|
||||
|
||||
@websocket_api.async_response
|
||||
@websocket_api.websocket_command(
|
||||
{
|
||||
vol.Required("type"): "search/related",
|
||||
@@ -38,6 +37,7 @@ async def async_setup(hass: HomeAssistant, config: dict):
|
||||
vol.Required("item_id"): str,
|
||||
}
|
||||
)
|
||||
@callback
|
||||
def websocket_search_related(hass, connection, msg):
|
||||
"""Handle search."""
|
||||
searcher = Searcher(
|
||||
|
Reference in New Issue
Block a user