fix: 风控导致动态全为过时

This commit is contained in:
shanmite 2024-03-25 15:44:23 +08:00
parent d337fb235d
commit 7b6356ac25

View File

@ -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
}