Browse Source

Allow collection sort by Release Date Descending

- default sort is still Release Date Ascending
- choosing sort by Release Date will change it to sort by Release Date Descending

This is because most people go to collections to browse new movies to watch, and recently released movies should be on top.
cptn 1 year ago
parent
commit
fe07b4bbc5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Controller/Entities/Movies/BoxSet.cs

+ 1 - 1
MediaBrowser.Controller/Entities/Movies/BoxSet.cs

@@ -125,7 +125,7 @@ namespace MediaBrowser.Controller.Entities.Movies
             if (string.Equals(DisplayOrder, "PremiereDate", StringComparison.OrdinalIgnoreCase))
             if (string.Equals(DisplayOrder, "PremiereDate", StringComparison.OrdinalIgnoreCase))
             {
             {
                 // Sort by release date
                 // Sort by release date
-                return LibraryManager.Sort(children, user, new[] { ItemSortBy.ProductionYear, ItemSortBy.PremiereDate, ItemSortBy.SortName }, SortOrder.Ascending).ToList();
+                return LibraryManager.Sort(children, user, new[] { ItemSortBy.ProductionYear, ItemSortBy.PremiereDate, ItemSortBy.SortName }, SortOrder.Descending).ToList();
             }
             }
 
 
             // Default sorting
             // Default sorting