mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
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:
parent
9b20f59ac6
commit
8e2b11cd3c
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue