diff --git a/src/js-components/previewBar.ts b/src/js-components/previewBar.ts index 6e91fc0e..8ef7a81f 100644 --- a/src/js-components/previewBar.ts +++ b/src/js-components/previewBar.ts @@ -955,8 +955,7 @@ class PreviewBar { } } - if ((direction === 1 && timeInSeconds > seg.segment[1]) - || (direction === -1 && timeInSeconds < seg.segment[0])) { + if (direction === 1 && seg.segment[0] > timeInSeconds) { break; } }