mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #7075 from crobibero/sort
This commit is contained in:
commit
1b9cb8cca6
@ -3016,8 +3016,8 @@ namespace Emby.Server.Implementations.Data
|
||||
return " ORDER BY " + string.Join(',', orderBy.Select(i =>
|
||||
{
|
||||
var columnMap = MapOrderByField(i.OrderBy, query);
|
||||
|
||||
return columnMap.SortBy + " " + columnMap.SortOrder;
|
||||
var sortOrder = columnMap.SortOrder == SortOrder.Ascending ? "ASC" : "DESC";
|
||||
return columnMap.SortBy + " " + sortOrder;
|
||||
}));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user