zuke: fix search function ignoring matching artist name

This commit is contained in:
Sigrid Solveig Haflínudóttir 2021-11-03 14:45:27 +00:00
parent 4584fbf577
commit 2d56837b2f

View file

@ -941,6 +941,8 @@ search(char d)
if(cistrstr(m->artist[a], buf) != nil)
break;
}
if(a < m->numartist)
break;
if(m->album != nil && cistrstr(m->album, buf) != nil)
break;
if(m->title != nil && cistrstr(m->title, buf) != nil)