mirror of
https://github.com/home-assistant/core.git
synced 2025-07-29 08:07:45 +00:00
Fix search string construction error
This commit is contained in:
parent
7501a08380
commit
c9a77bc96f
@ -690,7 +690,7 @@ class SqueezeBoxMediaPlayerEntity(
|
||||
"0",
|
||||
str(return_items),
|
||||
("tags:" + tags) if tags else "tags:laay",
|
||||
"search:" + search_string or "",
|
||||
"search:" + search_string if search_string is not None else "",
|
||||
]
|
||||
case "favorites":
|
||||
_param = [
|
||||
|
Loading…
x
Reference in New Issue
Block a user