This commit is contained in:
j 2011-08-24 10:36:15 +02:00
parent 0173e9ee40
commit 24806db9ff
1 changed files with 1 additions and 1 deletions

View File

@ -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,