diff --git a/ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx b/ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx index 71fedf131..50decfa13 100644 --- a/ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx +++ b/ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx @@ -412,7 +412,12 @@ export const ScenePlayer: React.FC = ({ playerRef.current?.pause(); }; const onScrubberSeek = (seconds: number) => { - playerRef.current?.currentTime(seconds); + const player = playerRef.current; + if (player) { + player.play()?.then(() => { + player.currentTime(seconds); + }); + } }; const isPortrait =