Replies: 1 comment
-
|
I think I see what is going on here and it may have to do with how beets handles OR queries, for example: beet ls genres::abc , artist::cbaIn this case it seems like beets wrongly assumes that beet ls sometag:'xxx,'stands for beet ls sometag::xxx ,I think you can fix this by querying |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Asking about this here because I'm not 100% confident this is an issue.
I noticed that searching for a comma in a tag seems to break the search parsing. I say "broken" because the resulting behavior is not self-consistent; in my tests the search will return all files even if you invert the tag search with a "^". If I comma was causing some sort of unfamiliar expected behavior that results in returning all files, then inverting the search should return no files. But this isn't the case, which leads me to suspect a parsing issue.
I'm on Beets 2.7.1.
Here is a sample query, you can see that the comma gets dropped from the actual query.
What I was actually trying to do: come up with a query for (a) any track with no genre tag, and (b) any track with multiple genres tagged. So far I haven't figured out how to do that, there seem to be other issues (?) in searching for a blank genre tag (
^$doesn't work).Beta Was this translation helpful? Give feedback.
All reactions