diff --git a/pandora/item/models.py b/pandora/item/models.py index 3dcbc705..48635c88 100644 --- a/pandora/item/models.py +++ b/pandora/item/models.py @@ -944,7 +944,7 @@ class Item(models.Model): def poster_frames(self): frames = [] offset = 0 - for f in self.files(active=True, is_video=True): + for f in self.files.filter(active=True, is_video=True): for ff in f.frames.all(): frames.append({ 'position': offset + ff.position,