forked from rc/aircox
fix podcasts
This commit is contained in:
@ -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"))
|
||||
|
Reference in New Issue
Block a user