Fixing "find any" and "list * any" to actually find matches.
git-svn-id: https://svn.musicpd.org/mpd/trunk@5137 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
f597dd0235
commit
a26582e991
|
@ -247,17 +247,21 @@ static int tagItemFoundAndMatches(Song * song, int type, char *str)
|
|||
{
|
||||
int i;
|
||||
|
||||
if (type == LOCATE_TAG_FILE_TYPE) {
|
||||
if (type == LOCATE_TAG_FILE_TYPE || type == LOCATE_TAG_ANY_TYPE) {
|
||||
if (0 == strcmp(str, getSongUrl(song)))
|
||||
return 1;
|
||||
if (type == LOCATE_TAG_FILE_TYPE)
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!song->tag)
|
||||
return 0;
|
||||
|
||||
for (i = 0; i < song->tag->numOfItems; i++) {
|
||||
if (song->tag->items[i].type != type)
|
||||
if (type != LOCATE_TAG_ANY_TYPE &&
|
||||
song->tag->items[i].type != type) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (0 == strcmp(str, song->tag->items[i].value))
|
||||
return 1;
|
||||
|
|
Loading…
Reference in New Issue