mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
fix: do not add nil filters (#3394)
This commit is contained in:
parent
ae6499b941
commit
16d1314a68
2 changed files with 21 additions and 1 deletions
|
@ -29,7 +29,9 @@ func (r *sqlRepository) parseRestFilters(ctx context.Context, options rest.Query
|
|||
// Look for a custom filter function
|
||||
f = strings.ToLower(f)
|
||||
if ff, ok := r.filterMappings[f]; ok {
|
||||
filters = append(filters, ff(f, v))
|
||||
if filter := ff(f, v); filter != nil {
|
||||
filters = append(filters, filter)
|
||||
}
|
||||
continue
|
||||
}
|
||||
// Ignore invalid filters (not based on a field or filter function)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue