diff --git a/web/src/components/player/DynamicVideoPlayer.tsx b/web/src/components/player/DynamicVideoPlayer.tsx index 4a96bf19c..a7b56964e 100644 --- a/web/src/components/player/DynamicVideoPlayer.tsx +++ b/web/src/components/player/DynamicVideoPlayer.tsx @@ -453,7 +453,7 @@ export class DynamicVideoController { } if (time > this.preview.end) { - if (this.clipChangeLockout) { + if (this.clipChangeLockout && time - this.preview.end < 30) { return; } @@ -470,7 +470,7 @@ export class DynamicVideoController { } if (time < this.preview.start) { - if (this.clipChangeLockout) { + if (this.clipChangeLockout && this.preview.start - time < 30) { return; }