Fix(subsonic): missing default order for search3
This commit is contained in:
parent
51788a324c
commit
209e118882
3 changed files with 3 additions and 2 deletions
|
|
@ -566,7 +566,7 @@ class SubsonicViewSet(viewsets.GenericViewSet):
|
|||
except (TypeError, KeyError, ValueError):
|
||||
size = 20
|
||||
|
||||
size = min(size, 100)
|
||||
size = min(size, 500)
|
||||
queryset = c["queryset"]
|
||||
if query:
|
||||
queryset = c["queryset"].filter(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue