mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix dateLoved
in criteria. Now log invalid field names in criteria
This commit is contained in:
parent
a4d3bf42a7
commit
8c2e4da396
2 changed files with 11 additions and 1 deletions
|
@ -6,6 +6,8 @@ import (
|
|||
"errors"
|
||||
"strings"
|
||||
|
||||
"github.com/navidrome/navidrome/log"
|
||||
|
||||
"github.com/Masterminds/squirrel"
|
||||
)
|
||||
|
||||
|
@ -21,6 +23,10 @@ type Criteria struct {
|
|||
|
||||
func (c Criteria) OrderBy() string {
|
||||
f := fieldMap[strings.ToLower(c.Sort)]
|
||||
if f == "" {
|
||||
log.Error("Invalid field in 'sort' field", "field", c.Sort)
|
||||
f = c.Sort
|
||||
}
|
||||
if c.Order != "" {
|
||||
f = f + " " + c.Order
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue