From a83969e3ebdfed85909b0336882fc39534f29384 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Thu, 1 Aug 2019 20:21:45 -0400 Subject: [PATCH] Fixed notice never displaying --- content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.js b/content.js index 49205c2a..dc1e5d80 100644 --- a/content.js +++ b/content.js @@ -263,7 +263,7 @@ function sponsorCheck() { //see if any sponsor start time was just passed for (let i = 0; i < sponsorTimes.length; i++) { //if something was skipped - if (checkSponsorTime(sponsorTimes, i), true) { + if (checkSponsorTime(sponsorTimes, i, true)) { skipHappened = true; break; }