Merge pull request #374 from garbled1/latest_dl_fix

Fix #364 by checking the filesize is not null.
This commit is contained in:
meeb
2023-05-03 02:02:14 +10:00
committed by GitHub

View File

@@ -70,7 +70,7 @@ class DashboardView(TemplateView):
data['average_bytes_per_media'] = 0
# Latest downloads
data['latest_downloads'] = Media.objects.filter(
downloaded=True
downloaded=True, downloaded_filesize__isnull=False
).order_by('-download_date')[:10]
# Largest downloads
data['largest_downloads'] = Media.objects.filter(