Merge pull request #11615 from cptn-x/patch-1

Allow collection sort by Release Date Descending
This commit is contained in:
Bond-009
2024-06-05 11:52:07 +02:00
committed by GitHub

View File

@@ -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.Ascending).ToList();
return LibraryManager.Sort(children, user, new[] { ItemSortBy.ProductionYear, ItemSortBy.PremiereDate, ItemSortBy.SortName }, SortOrder.Descending).ToList();
}
// Default sorting