Fix #364 by checking the filesize is not null.

This commit is contained in:
garbled1 2023-05-02 08:24:50 -07:00
parent 1f68be5c26
commit 422d228359
1 changed files with 1 additions and 1 deletions

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(