mirror of
https://github.com/beetbox/beets.git
synced 2025-12-13 20:13:09 +01:00
Use : instead of ::
This commit is contained in:
parent
72c5302004
commit
d65fcfbc8e
1 changed files with 1 additions and 1 deletions
|
|
@ -1394,7 +1394,7 @@ def parse_query_parts(parts, model_cls):
|
|||
|
||||
# Special-case path-like queries, which are non-field queries
|
||||
# containing path separators (/).
|
||||
parts = [f"path::{s}" if PathQuery.is_path_query(s) else s for s in parts]
|
||||
parts = [f"path={s}" if PathQuery.is_path_query(s) else s for s in parts]
|
||||
|
||||
case_insensitive = beets.config['sort_case_insensitive'].get(bool)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue