fix downloading of images

This commit is contained in:
Ross
2023-12-22 16:25:08 +00:00
parent 26118f9443
commit 5790f6430d
+1 -1
View File
@@ -1080,7 +1080,7 @@ class SeriesImagesZipView(SuperuserRequiredMixin, BaseZipView):
def get_files(self):
series = Series.objects.get(pk=self.kwargs["pk"])
return [i.image.file for i in series.images.all()]
return [i.image.file for i in series.get_images()]
def create_series_findings(request):