mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2026-01-15 16:33:35 -03:00
Apply suggestion from @thornbill
Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
@@ -1194,7 +1194,7 @@ function renderMoreFromArtist(view, item, apiClient) {
|
||||
if (item.Type === 'MusicArtist') {
|
||||
query.ContributingArtistIds = item.Id;
|
||||
} else {
|
||||
query.AlbumArtistIds = item.AlbumArtists.map(artist => artist.Id);
|
||||
query.AlbumArtistIds = item.AlbumArtists.map(artist => artist.Id).join(',');
|
||||
}
|
||||
|
||||
apiClient.getItems(apiClient.getCurrentUserId(), query).then(function (result) {
|
||||
|
||||
Reference in New Issue
Block a user