Merge pull request #7075 from crobibero/sort

pull/7076/head
Claus Vium 3 years ago committed by GitHub
commit 1b9cb8cca6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save