@@ -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 false
try {