Skip to content

Commit

Permalink
fix: 风控导致动态全为过时
Browse files Browse the repository at this point in the history
  • Loading branch information
shanmiteko committed Mar 25, 2024
1 parent d337fb2 commit 7b6356a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/monitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 7b6356a

Please sign in to comment.