mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-13 02:14:23 +01:00
Fix early skips on firefox when seeking while playing
This commit is contained in:
parent
f764869cc8
commit
3f7f671a3b
1 changed files with 16 additions and 18 deletions
|
@ -964,7 +964,6 @@ function updateVirtualTime() {
|
|||
if (utils.isFirefox()) {
|
||||
let count = 0;
|
||||
let lastTime = lastKnownVideoTime.videoTime;
|
||||
if (lastKnownVideoTime.fromPause) {
|
||||
currentVirtualTimeInterval = setInterval(() => {
|
||||
if (lastTime !== video.currentTime) {
|
||||
count++;
|
||||
|
@ -983,7 +982,6 @@ function updateVirtualTime() {
|
|||
}
|
||||
}, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function updateWaitingTime(): void {
|
||||
|
|
Loading…
Reference in a new issue