mirror of
https://github.com/beetbox/beets.git
synced 2026-02-11 18:02:10 +01:00
Changed query from double to single quotes.
This commit is contained in:
parent
64c94f61b7
commit
a0a0a094d3
2 changed files with 3 additions and 1 deletions
|
|
@ -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():
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue