forked from 0x2620/pandora
order poster frames, fixes #409
This commit is contained in:
parent
1b05226103
commit
5c439828ea
1 changed files with 2 additions and 2 deletions
|
@ -1139,8 +1139,8 @@ class Item(models.Model):
|
||||||
def poster_frames(self):
|
def poster_frames(self):
|
||||||
frames = []
|
frames = []
|
||||||
offset = 0
|
offset = 0
|
||||||
for f in self.files.filter(selected=True, is_video=True):
|
for f in self.files.filter(selected=True, is_video=True).order_by('part'):
|
||||||
for ff in f.frames.all():
|
for ff in f.frames.all().order_by('position'):
|
||||||
frames.append({
|
frames.append({
|
||||||
'position': offset + ff.position,
|
'position': offset + ff.position,
|
||||||
'path': ff.frame.path,
|
'path': ff.frame.path,
|
||||||
|
|
Loading…
Reference in a new issue