Skip to content

Commit

Permalink
Leave a comment about a recent discussion we had on that likely outda…
Browse files Browse the repository at this point in the history
…ted line
  • Loading branch information
michaelherger committed Oct 19, 2024
1 parent 5d7e146 commit 8e28dc0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Slim/Schema/Album.pm
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,9 @@ sub artists {
# First try to fetch an explict album artist
my @artists = $self->artistsForRoles('ALBUMARTIST');

# TODO - is this still needed? - see https://github.com/LMS-Community/slimserver/pull/1186/files#r1806833273
# If the user wants to use BAND as album artist, pull that.
if (scalar @artists == 0 && $prefs->get('bandInArtists')) { ##?????
if (scalar @artists == 0 && $prefs->get('bandInArtists')) {

@artists = $self->artistsForRoles('BAND');
}
Expand Down

0 comments on commit 8e28dc0

Please sign in to comment.