mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
adjusted special feature sort order
This commit is contained in:
parent
87d77cdb95
commit
cf989d6b26
@ -432,7 +432,20 @@ namespace MediaBrowser.Api.UserLibrary
|
||||
.RecursiveChildren
|
||||
.OfType<Episode>()
|
||||
.Where(i => i.ParentIndexNumber.HasValue && i.ParentIndexNumber.Value == 0)
|
||||
.OrderBy(i => i.SortName)
|
||||
.OrderBy(i =>
|
||||
{
|
||||
if (i.PremiereDate.HasValue)
|
||||
{
|
||||
return i.PremiereDate.Value;
|
||||
}
|
||||
|
||||
if (i.ProductionYear.HasValue)
|
||||
{
|
||||
return new DateTime(i.ProductionYear.Value, 1, 1, 0, 0, 0, DateTimeKind.Utc);
|
||||
}
|
||||
return DateTime.MinValue;
|
||||
})
|
||||
.ThenBy(i => i.SortName)
|
||||
.Select(i => dtoBuilder.GetBaseItemDto(i, fields, user));
|
||||
|
||||
return Task.WhenAll(tasks);
|
||||
|
Loading…
Reference in New Issue
Block a user