このコミットが含まれているのは:
2026-03-18 22:57:17 +09:00
コミット d4754e830c
+2 -2
ファイルの表示
@@ -80,11 +80,11 @@ export default (() => {
return
const targetTime =
((new Date).getTime () - (new Date (theatreInfo.postStartedAt)).getTime ()) / 1000
((new Date).getTime () - (new Date (theatreInfo.postStartedAt)).getTime ())
const drift = Math.abs (meta.currentTime - targetTime)
if (drift > 5)
if (drift > 5_000)
embedRef.current?.seek (targetTime)
}