Add more sorting to Latest
This commit is contained in:
parent
e775286de5
commit
2b004e1f76
|
@ -355,7 +355,12 @@ namespace Emby.Server.Implementations.Library
|
||||||
var query = new InternalItemsQuery(user)
|
var query = new InternalItemsQuery(user)
|
||||||
{
|
{
|
||||||
IncludeItemTypes = includeItemTypes,
|
IncludeItemTypes = includeItemTypes,
|
||||||
OrderBy = new[] { (ItemSortBy.DateCreated, SortOrder.Descending) },
|
OrderBy = new[]
|
||||||
|
{
|
||||||
|
(ItemSortBy.DateCreated, SortOrder.Descending),
|
||||||
|
(ItemSortBy.SortName, SortOrder.Descending),
|
||||||
|
(ItemSortBy.ProductionYear, SortOrder.Descending)
|
||||||
|
},
|
||||||
IsFolder = includeItemTypes.Length == 0 ? false : (bool?)null,
|
IsFolder = includeItemTypes.Length == 0 ? false : (bool?)null,
|
||||||
ExcludeItemTypes = excludeItemTypes,
|
ExcludeItemTypes = excludeItemTypes,
|
||||||
IsVirtualItem = false,
|
IsVirtualItem = false,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user