소스 검색

Mod: filter

Aiden 1 개월 전
부모
커밋
75c9284855
5개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  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

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
js/pornhub.bundle.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
js/tiktok.bundle.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
js/xvideos.bundle.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 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 {

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.