aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/content.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content.ts')
-rw-r--r--src/content.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/content.ts b/src/content.ts
index a4d5222f..6b7982f1 100644
--- a/src/content.ts
+++ b/src/content.ts
@@ -804,7 +804,9 @@ async function startSponsorSchedule(includeIntersectingSegments = false, current
currentSkipSchedule = setTimeout(skippingFunction, offsetDelayTime);
// Show the notice only if the segment hasn't already started
- if (Config.config.showUpcomingNotice && getCurrentTime() < skippingSegments[0].segment[0]) {
+ if (Config.config.showUpcomingNotice && getCurrentTime() < skippingSegments[0].segment[0]
+ && !sponsorTimesSubmitting?.some((segment) => segment.segment === currentSkip.segment)
+ && [ActionType.Skip, ActionType.Mute].includes(skippingSegments[0].actionType)) {
const maxPopupTime = 3000;
const timeUntilPopup = Math.max(0, offsetDelayTime - maxPopupTime);
const popupTime = Math.min(maxPopupTime, timeUntilPopup);