diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-06-06 20:42:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-06 20:42:28 +0200 |
| commit | 7b40c6fef1d35ba7e4ebc1f218659fb969905477 (patch) | |
| tree | f01acb06f27a0567878aa373e0e05782c1c9fde6 | |
| parent | cca4c516f18312656ade5f1569c7e065d84c0a65 (diff) | |
| parent | 5975a0c5c8fa858fbbec6cb7da746cab2336ef5a (diff) | |
Merge pull request #11971 from jellyfin/revert-11615-patch-1
Revert "Allow collection sort by Release Date Descending"
| -rw-r--r-- | MediaBrowser.Controller/Entities/Movies/BoxSet.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Movies/BoxSet.cs b/MediaBrowser.Controller/Entities/Movies/BoxSet.cs index 8667e6539..d7ccfd8ae 100644 --- a/MediaBrowser.Controller/Entities/Movies/BoxSet.cs +++ b/MediaBrowser.Controller/Entities/Movies/BoxSet.cs @@ -125,7 +125,7 @@ namespace MediaBrowser.Controller.Entities.Movies if (string.Equals(DisplayOrder, "PremiereDate", StringComparison.OrdinalIgnoreCase)) { // Sort by release date - return LibraryManager.Sort(children, user, new[] { ItemSortBy.ProductionYear, ItemSortBy.PremiereDate, ItemSortBy.SortName }, SortOrder.Descending).ToList(); + return LibraryManager.Sort(children, user, new[] { ItemSortBy.ProductionYear, ItemSortBy.PremiereDate, ItemSortBy.SortName }, SortOrder.Ascending).ToList(); } // Default sorting |
