From: Guillaume Pellerin Date: Fri, 19 Sep 2025 13:13:07 +0000 (+0200) Subject: bugfix X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=5dc12cd6c625c78e1a6ed12466228d1c238878a7;p=teleforma.git bugfix --- diff --git a/teleforma/models/core.py b/teleforma/models/core.py index 6f68c22d..222b0ff5 100644 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -619,7 +619,7 @@ class Conference(models.Model): """ try: videos_base = self.media.filter(type='mp4') - if videos: + if videos_base: if len(videos) > 1: # workaround for video production multi source bug videos = videos_base.filter(file__contains="_0.webm")