From a2c0c3f79e3c5e07cc7fd961cbca003b9979102d Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Wed, 23 Jun 2021 23:51:20 -0400 Subject: [PATCH] Lower minimum view count --- src/content.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content.ts b/src/content.ts index 1bd64b36..aaf79e62 100644 --- a/src/content.ts +++ b/src/content.ts @@ -882,7 +882,7 @@ async function unlistedCheck() { const year = yearMatches ? parseInt(yearMatches[0]) : -1; const isOld = !isNaN(year) && year < 2017 && year > 2004; const views = parseInt(videoInfo?.videoDetails?.viewCount); - const isHighViews = views > 20000; + const isHighViews = views > 15000; if (isUnlisted && isOld && isHighViews) { // Ask if they want to submit this videoID