catch typeerrors for duration metadata, resolves #248

This commit is contained in:
meeb 2023-03-10 18:23:49 +11:00
parent e47d0eb7be
commit 55bfd911b9
1 changed files with 1 additions and 1 deletions

View File

@ -1059,7 +1059,7 @@ class Media(models.Model):
duration = self.loaded_metadata.get(field, 0)
try:
duration = int(duration)
except ValueError:
except (TypeError, ValueError):
duration = 0
return duration