Fix dateLoved in criteria. Now log invalid field names in criteria

This commit is contained in:
Deluan 2021-10-31 20:26:30 -04:00
parent a4d3bf42a7
commit 8c2e4da396
2 changed files with 11 additions and 1 deletions

View file

@ -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
}