diff --git a/extension/content.js b/extension/content.js index 72103ee..1edfde7 100644 --- a/extension/content.js +++ b/extension/content.js @@ -388,7 +388,7 @@ const video = findVideo(); if (video && message.actionTimestamp) { const latency = (Date.now() - message.actionTimestamp) / 1000; - if (latency > 0.05 && latency < 5.0) { + if (latency > 0.05 && latency < 1.0) { _setSuppress('seek'); video.currentTime += latency; reportLog(`Force Sync: Compensated ${Math.round(latency * 1000)}ms network latency`, 'info');