Merge branch '960-wrong-sort-used-when-sorting-favorites-by-album-name' into 'develop'
Resolve "Wrong sort used when sorting favorites by album name" Closes #960 See merge request funkwhale/funkwhale!945
This commit is contained in:
commit
a020afcbec
|
@ -269,6 +269,7 @@ class TrackViewSet(common_views.SkipFilterForGetObject, viewsets.ReadOnlyModelVi
|
||||||
ordering_fields = (
|
ordering_fields = (
|
||||||
"creation_date",
|
"creation_date",
|
||||||
"title",
|
"title",
|
||||||
|
"album__title",
|
||||||
"album__release_date",
|
"album__release_date",
|
||||||
"size",
|
"size",
|
||||||
"position",
|
"position",
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Fixed issue with sorting by album name not working (#960)
|
Loading…
Reference in New Issue