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 () {
const apiClient = this.apiClient;
const options = {
SortBy: 'SeriesName,SortName',
SortBy: 'SeriesSortName,SortName',
SortOrder: 'Ascending',
Filters: 'IsFavorite',
Recursive: true,