mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-06 11:37:02 +03:00
Merge pull request #807 from ajayyy/unlisted-hotfix
Only show unlisted warning when there are no segments
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"name": "__MSG_fullName__",
|
||||
"short_name": "SponsorBlock",
|
||||
"version": "2.1.0.2",
|
||||
"version": "2.1.1",
|
||||
"default_locale": "en",
|
||||
"description": "__MSG_Description__",
|
||||
|
||||
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user