aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/content.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content.ts b/src/content.ts
index 9fcf3381..fe6c4268 100644
--- a/src/content.ts
+++ b/src/content.ts
@@ -814,7 +814,7 @@ async function startSponsorSchedule(includeIntersectingSegments = false, current
const autoSkip = shouldAutoSkip(skippingSegments[0]);
if (currentUpcomingSchedule) clearTimeout(currentUpcomingSchedule);
- currentUpcomingSchedule = setTimeout(createUpcomingNotice, timeUntilPopup, skippingSegments, popupTime, autoSkip);
+ currentUpcomingSchedule = setTimeout(createUpcomingNotice, timeUntilPopup, [skippingSegments[0]], popupTime, autoSkip);
}
}
}