Fix ambiguous column when sorting media_files by created_at.

Fix #3006
This commit is contained in:
Deluan 2024-05-08 08:22:53 -04:00
parent dd4374cec6
commit 62cc8a2d4b
5 changed files with 83 additions and 10 deletions

View file

@ -68,12 +68,23 @@ func (r sqlRepository) applyOptions(sq SelectBuilder, options ...model.QueryOpti
return sq
}
func (r sqlRepository) buildSortOrder(sort, order string) string {
// TODO Change all sortMappings to have a consistent case
func (r sqlRepository) sortMapping(sort string) string {
if mapping, ok := r.sortMappings[sort]; ok {
sort = mapping
return mapping
}
if mapping, ok := r.sortMappings[toCamelCase(sort)]; ok {
return mapping
}
sort = toSnakeCase(sort)
if mapping, ok := r.sortMappings[sort]; ok {
return mapping
}
return sort
}
func (r sqlRepository) buildSortOrder(sort, order string) string {
sort = r.sortMapping(sort)
order = strings.ToLower(strings.TrimSpace(order))
var reverseOrder string
if order == "desc" {