filter
This commit is contained in:
parent
0173e9ee40
commit
24806db9ff
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue