mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #3628 from thornbill/actually-fix-artist-albums
(cherry picked from commit d606a2aad5
)
Signed-off-by: Joshua Boniface <joshua@boniface.me>
This commit is contained in:
parent
39dccfcd70
commit
34b2018610
2 changed files with 9 additions and 3 deletions
|
@ -1182,9 +1182,9 @@ function renderMoreFromArtist(view, item, apiClient) {
|
|||
};
|
||||
|
||||
if (item.Type === 'MusicArtist') {
|
||||
query.AlbumArtistIds = item.Id;
|
||||
query.ContributingArtistIds = item.Id;
|
||||
} else {
|
||||
query.AlbumArtistIds = item.AlbumArtists[0].Id;
|
||||
query.ContributingArtistIds = item.AlbumArtists.map(artist => artist.Id).join(',');
|
||||
}
|
||||
|
||||
apiClient.getItems(apiClient.getCurrentUserId(), query).then(function (result) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue