fix timeline for edits with 0 duration clips

This commit is contained in:
j 2021-08-06 14:39:48 +02:00
commit 0ba80ada1f
2 changed files with 7 additions and 0 deletions

View file

@ -1761,6 +1761,9 @@ pandora.getLargeEditTimelineURL = function(edit, type, i, callback) {
if (clipIn >= timelineOut) {
return false; // break
}
if (!clip.duration) {
return;
}
if (
(timelineIn <= clipIn && clipIn <= timelineOut)
|| (timelineIn <= clipOut && clipOut <= timelineOut)