diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-06-05 12:02:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-05 12:02:25 +0200 |
| commit | 5975a0c5c8fa858fbbec6cb7da746cab2336ef5a (patch) | |
| tree | f21785e0a5925033518f4c55cfacc41b716cf3f5 | |
| parent | 727f1765420601ecc84ed3c8216ba6812ac979e6 (diff) | |
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 |
