Browse Source

Mod: filter

Aiden 1 month ago
parent
commit
75c9284855
5 changed files with 13 additions and 0 deletions
  1. 0 0
      js/pornhub.bundle.js
  2. 0 0
      js/tiktok.bundle.js
  3. 0 0
      js/xvideos.bundle.js
  4. 0 0
      js/youtube.bundle.js
  5. 13 0
      js/youtube/youtubev1.js

File diff suppressed because it is too large
+ 0 - 0
js/pornhub.bundle.js


File diff suppressed because it is too large
+ 0 - 0
js/tiktok.bundle.js


File diff suppressed because it is too large
+ 0 - 0
js/xvideos.bundle.js


File diff suppressed because it is too large
+ 0 - 0
js/youtube.bundle.js


+ 13 - 0
js/youtube/youtubev1.js

@@ -377,6 +377,19 @@ search = async (keyword, next, requestId, platform) => {
                 }
             }
         }
+        const publishText = video["publishedTimeText"]?.["simpleText"];
+        if (!publishText) {
+            return true
+        }
+        const livePublishTexts = [
+            "直播",
+            "Stream"
+        ]
+        for (const liveItem of livePublishTexts) {
+            if (publishText.indexOf(liveItem) >= 0) {
+                return true
+            }
+        }
         return false
     }
     try {

Some files were not shown because too many files changed in this diff