mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #3481 from Maxr1998/album-tracks-index-sort
This commit is contained in:
commit
4340b06101
1 changed files with 3 additions and 1 deletions
|
@ -1327,7 +1327,9 @@ function renderChildren(page, item) {
|
|||
Fields: fields
|
||||
};
|
||||
|
||||
if (item.Type !== 'BoxSet') {
|
||||
if (item.Type == 'MusicAlbum') {
|
||||
query.SortBy = 'ParentIndexNumber,IndexNumber,SortName';
|
||||
} else if (item.Type !== 'BoxSet') {
|
||||
query.SortBy = 'SortName';
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue