diff --git a/api/funkwhale_api/music/views.py b/api/funkwhale_api/music/views.py index 580ac28b7..c451d6b76 100644 --- a/api/funkwhale_api/music/views.py +++ b/api/funkwhale_api/music/views.py @@ -269,6 +269,7 @@ class TrackViewSet(common_views.SkipFilterForGetObject, viewsets.ReadOnlyModelVi ordering_fields = ( "creation_date", "title", + "album__title", "album__release_date", "size", "position", diff --git a/changes/changelog.d/960.bugfix b/changes/changelog.d/960.bugfix new file mode 100644 index 000000000..a3082e85d --- /dev/null +++ b/changes/changelog.d/960.bugfix @@ -0,0 +1 @@ +Fixed issue with sorting by album name not working (#960) \ No newline at end of file