Changed query from double to single quotes.

This commit is contained in:
pSpitzner 2025-09-27 13:06:12 +02:00
parent 64c94f61b7
commit a0a0a094d3
2 changed files with 3 additions and 1 deletions

View file

@ -412,7 +412,7 @@ class SearchApiMetadataSourcePlugin(
:return: Query string to be provided to the search API.
"""
components = [query_string, *(f'{k}:"{v}"' for k, v in filters.items())]
components = [query_string, *(f"{k}:'{v}'" for k, v in filters.items())]
query = " ".join(filter(None, components))
if self.config["search_query_ascii"].get():

View file

@ -27,6 +27,8 @@ Bug fixes:
matching. :bug:`5189`
- :doc:`plugins/discogs` Fixed inconsistency in stripping disambiguation from
artists but not labels. :bug:`5366`
- :doc:`plugins/spotify` Fixed an issue where candidate lookup would not find
matches due to query escaping (single vs double quotes).
For packagers: