diff --git a/api/funkwhale_api/music/views.py b/api/funkwhale_api/music/views.py
index 580ac28b707f400c60781d4f9dde452613d21cb5..c451d6b76d7e5a7952676a35fddfada040fdb97f 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 0000000000000000000000000000000000000000..a3082e85d3fb672c7f9c5a3418e92099cdc4f4b7
--- /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