flame: fixing broken get_clips_in_reels

This commit is contained in:
Jakub Jezek 2022-04-05 15:57:16 +02:00
parent 5b260afc6a
commit 575898490f
No known key found for this signature in database
GPG key ID: D8548FBF690B100A

View file

@ -405,7 +405,8 @@ def get_clips_in_reels(project):
for segment in track.segments:
segment_data = _get_segment_attributes(
segment, from_clip=True)
clip_data.update(segment_data)
if segment_data:
clip_data.update(segment_data)
output_clips.append(clip_data)