1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix: use SeriesSortName in SortBy

`SeriesName` is not a valid value for `SortBy`.
This commit is contained in:
Dmitry Lyzo 2024-03-29 00:43:44 +03:00
parent d88dee9e05
commit 2e4eb68d59
2 changed files with 2 additions and 2 deletions

View file

@ -133,7 +133,7 @@ function getFetchDataFn(section) {
return function () { return function () {
const apiClient = this.apiClient; const apiClient = this.apiClient;
const options = { const options = {
SortBy: 'SeriesName,SortName', SortBy: 'SeriesSortName,SortName',
SortOrder: 'Ascending', SortOrder: 'Ascending',
Filters: 'IsFavorite', Filters: 'IsFavorite',
Recursive: true, Recursive: true,

View file

@ -1058,7 +1058,7 @@ class ItemsView {
if (params.type === 'Episode') { if (params.type === 'Episode') {
return { return {
name: globalize.translate('Name'), name: globalize.translate('Name'),
value: 'SeriesName,SortName' value: 'SeriesSortName,SortName'
}; };
} }