pugins: PictureFlow: Fix album not found

Each artist name is only stored once, regardless of case,
so we have to perform a case-insensitive comparison with
the current artist.

Change-Id: I571c0e49c032a6d5c64f6e3289513ba7fe279cb8
This commit is contained in:
Christian Soffke 2024-11-12 07:52:06 +01:00
parent 9b20f59ac6
commit 8e2b11cd3c

View file

@ -1878,7 +1878,7 @@ static int id3_get_index(struct mp3entry *id3)
artist_idx = pf_idx.album_index[i].artist_idx;
if(!rb->strcmp(pf_idx.album_names + album_idx, current_album) &&
!rb->strcmp(pf_idx.artist_names + artist_idx, current_artist))
!rb->strcasecmp(pf_idx.artist_names + artist_idx, current_artist))
return i;
}