Fix #1059: fixed some broken RSS feeds
This commit is contained in:
parent
02f5e9f531
commit
133e2e4f07
4 changed files with 9 additions and 4 deletions
|
|
@ -29,7 +29,11 @@ class ChannelFilterSet(filters.FilterSet):
|
|||
if not value:
|
||||
return queryset
|
||||
|
||||
channel = audio_models.Channel.objects.filter(uuid=value).first()
|
||||
channel = (
|
||||
audio_models.Channel.objects.filter(uuid=value)
|
||||
.select_related("library")
|
||||
.first()
|
||||
)
|
||||
|
||||
if not channel:
|
||||
return queryset.none()
|
||||
|
|
@ -38,7 +42,7 @@ class ChannelFilterSet(filters.FilterSet):
|
|||
actor = utils.get_actor_from_request(self.request)
|
||||
uploads = uploads.playable_by(actor)
|
||||
ids = uploads.values_list(self.Meta.channel_filter_field, flat=True)
|
||||
return queryset.filter(pk__in=ids)
|
||||
return queryset.filter(pk__in=ids).distinct()
|
||||
|
||||
|
||||
class LibraryFilterSet(filters.FilterSet):
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ def compute_status(jobs):
|
|||
|
||||
AUDIO_EXTENSIONS_AND_MIMETYPE = [
|
||||
# keep the most correct mimetype for each extension at the bottom
|
||||
("mp3", "audio/mp3"),
|
||||
("mp3", "audio/mpeg3"),
|
||||
("mp3", "audio/x-mp3"),
|
||||
("mp3", "audio/mpeg"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue