diff --git a/api/funkwhale_api/history/views.py b/api/funkwhale_api/history/views.py index a14917fc1..0a7992756 100644 --- a/api/funkwhale_api/history/views.py +++ b/api/funkwhale_api/history/views.py @@ -56,7 +56,9 @@ class ListeningViewSet( ) tracks = Track.objects.with_playable_uploads( music_utils.get_actor_from_request(self.request) - ).select_related("artist", "album__artist", "attributed_to") + ).select_related( + "artist", "album__artist", "attributed_to", "artist__attachment_cover" + ) return queryset.prefetch_related(Prefetch("track", queryset=tracks)) def get_serializer_context(self): diff --git a/front/src/components/audio/track/Widget.vue b/front/src/components/audio/track/Widget.vue index 4092d054d..68d6988a9 100644 --- a/front/src/components/audio/track/Widget.vue +++ b/front/src/components/audio/track/Widget.vue @@ -8,6 +8,8 @@
+ +