fix podcasts

This commit is contained in:
bkfox
2024-04-30 21:47:07 +02:00
parent 1344e2dce1
commit 31e22beaab
3 changed files with 5 additions and 5 deletions

View File

@ -126,8 +126,8 @@ class LogListAPIView(LogListMixin, BaseAPIView, ListAPIView):
self.min_date = tz.now() - tz.timedelta(minutes=30)
return date
def get_object_list(self, logs, full):
return [LogInfo(obj) for obj in super().get_object_list(logs, full)]
def get_object_list(self, logs, *args, **kwargs):
return [LogInfo(obj) for obj in super().get_object_list(logs, *args, **kwargs)]
def get_serializer(self, queryset, *args, **kwargs):
full = bool(self.request.GET.get("full"))