Merge pull request #11971 from jellyfin/revert-11615-patch-1

Revert "Allow collection sort by Release Date Descending"
pull/11993/head
Bond-009 10 months ago committed by GitHub
commit 7b40c6fef1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

Loading…
Cancel
Save