diff options
Diffstat (limited to 'src/content.ts')
-rw-r--r-- | src/content.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content.ts b/src/content.ts index be48503b..362eaec5 100644 --- a/src/content.ts +++ b/src/content.ts @@ -885,7 +885,7 @@ async function unlistedCheck() { const views = parseInt(videoInfo?.videoDetails?.viewCount); const isHighViews = views > 15000; - if (isUnlisted && isOld && isHighViews) { + if (isUnlisted && isOld && isHighViews && (!sponsorTimes || sponsorTimes.length <= 0)) { // Ask if they want to submit this videoID const notice = new GenericNotice(skipNoticeContentContainer, "unlistedWarning", { title: chrome.i18n.getMessage("experimentUnlistedTitle"), |