From 31a9de252d2ec29ca08171cf3e9150bf7591603f Mon Sep 17 00:00:00 2001 From: Ajay Date: Fri, 28 Jul 2023 20:34:09 -0400 Subject: [PATCH] Fix skip loop issue Fixes #1811 --- src/content.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content.ts b/src/content.ts index 555401e2..6dfea5fb 100644 --- a/src/content.ts +++ b/src/content.ts @@ -706,7 +706,7 @@ async function startSponsorSchedule(includeIntersectingSegments = false, current // Don't pretend to be earlier than we are, could result in loops if (forcedSkipTime !== null && forceVideoTime > forcedSkipTime) { - forcedSkipTime = null; + forcedSkipTime = forceVideoTime; } startSponsorSchedule(forcedIncludeIntersectingSegments, forcedSkipTime, forcedIncludeNonIntersectingSegments);