Merge pull request #7190 from theguymadmax/fix-more-from
Fix "More From" section to show all albums by album artist
This commit is contained in:
@@ -1194,7 +1194,7 @@ function renderMoreFromArtist(view, item, apiClient) {
|
||||
if (item.Type === 'MusicArtist') {
|
||||
query.ContributingArtistIds = item.Id;
|
||||
} else {
|
||||
query.ContributingArtistIds = item.AlbumArtists.map(artist => artist.Id).join(',');
|
||||
query.AlbumArtistIds = item.AlbumArtists.map(artist => artist.Id).join(',');
|
||||
}
|
||||
|
||||
apiClient.getItems(apiClient.getCurrentUserId(), query).then(function (result) {
|
||||
|
||||
Reference in New Issue
Block a user