forked from 0x2620/pandora
handle cut issues
This commit is contained in:
parent
2a6ad5c040
commit
139a5e3722
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ class Clip(models.Model):
|
|||
if value:
|
||||
data[key] = value
|
||||
data['duration'] = data['out'] - data['in']
|
||||
data['cuts'] = tuple([c for c in self.item.get('cuts') if c > self.start and c < self.end])
|
||||
data['cuts'] = tuple([c for c in self.item.get('cuts', []) if c > self.start and c < self.end])
|
||||
data['layers'] = self.get_layers(user)
|
||||
return data
|
||||
|
||||
|
|
Loading…
Reference in a new issue