mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
Fix artists album lists
This commit is contained in:
parent
add924e35e
commit
91c9a26e4d
@ -1171,9 +1171,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) {
|
||||
|
@ -265,6 +265,12 @@ function renderSection(page, item, element, type) {
|
||||
function loadItems(element, item, type, query, listOptions) {
|
||||
query = getQuery(query, item);
|
||||
getItemsFunction(query, item)(query.StartIndex, query.Limit, query.Fields).then(function (result) {
|
||||
// If results are empty, hide the section
|
||||
if (!result.Items?.length) {
|
||||
element.classList.add('hide');
|
||||
return;
|
||||
}
|
||||
|
||||
let html = '';
|
||||
|
||||
if (query.Limit && result.TotalRecordCount > query.Limit) {
|
||||
@ -327,7 +333,7 @@ function addCurrentItemToQuery(query, item) {
|
||||
} else if (item.Type === 'Studio') {
|
||||
query.StudioIds = item.Id;
|
||||
} else if (item.Type === 'MusicArtist') {
|
||||
query.ArtistIds = item.Id;
|
||||
query.AlbumArtistIds = item.Id;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user