diff --git a/pandora/archive/management/commands/import_streams.py b/pandora/archive/management/commands/import_streams.py index 0b5a1a4f0..0abd0b729 100644 --- a/pandora/archive/management/commands/import_streams.py +++ b/pandora/archive/management/commands/import_streams.py @@ -55,3 +55,8 @@ class Command(BaseCommand): s.file.item.update_timeline() #make sure all derivatives exist s.extract_derivatives() + + #update clips + for c in s.file.item.clips.all(): + c.update_calculated_values() + c.save()