From 4fb2b457a9bfe4adfafc5f5a5c8886547b2162c2 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Mon, 27 Jan 2025 13:54:13 +0100 Subject: [PATCH] Cherrypick from develop: fix artist_credit regression NOCHANGELOG --- api/funkwhale_api/audio/filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/funkwhale_api/audio/filters.py b/api/funkwhale_api/audio/filters.py index 2153a5955..35682ed8a 100644 --- a/api/funkwhale_api/audio/filters.py +++ b/api/funkwhale_api/audio/filters.py @@ -37,7 +37,7 @@ class ChannelFilter(moderation_filters.HiddenContentFilterSet): # tuple-mapping retains order fields=( ("creation_date", "creation_date"), - ("artist_credit__artist__modification_date", "modification_date"), + ("artist__modification_date", "modification_date"), ("?", "random"), ) )