Skip to content

Commit

Permalink
Merge branch 'public/9.0' into public/9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelherger committed Dec 15, 2024
2 parents 8d3161d + c860f34 commit a0ca976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Slim/Schema/Genre.pm
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ sub isMyClassicalGenre {

loadMyClassicalGenreMap() if !$myClassicalGenreMap;

return grep {
return (grep {
$myClassicalGenreMap->{uc($_)}
} Slim::Music::Info::splitTag($genres, $sep) ? 1 : 0;
} Slim::Music::Info::splitTag($genres, $sep)) ? 1 : 0;
}

sub myClassicalGenreIds {
Expand Down

0 comments on commit a0ca976

Please sign in to comment.