From 7b6356ac252f30cea79240bde3e3f7e7594a2f2f Mon Sep 17 00:00:00 2001 From: shanmite Date: Mon, 25 Mar 2024 15:44:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=20=E9=A3=8E=E6=8E=A7=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E5=8A=A8=E6=80=81=E5=85=A8=E4=B8=BA=E8=BF=87=E6=97=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/core/monitor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/monitor.js b/lib/core/monitor.js index 2b0296f4a..61d19db06 100644 --- a/lib/core/monitor.js +++ b/lib/core/monitor.js @@ -370,7 +370,7 @@ class Monitor extends Searcher { } /* 超过指定时间退出 */ - if (now_ts - create_time > max_create_time * 86400) { + if (create_time && now_ts - create_time > max_create_time * 86400) { log.info("筛选动态", `过时动态(https://t.bilibili.com/${dyid})`) return false }