Skip to content

Commit

Permalink
🐛 修复2小时计算少乘60秒
Browse files Browse the repository at this point in the history
  • Loading branch information
phidiaLam committed May 21, 2024
1 parent 0fc58f3 commit 843e994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logic/ceobe_cookie_logic/src/impletements/new_cookie.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl CeobeCookieLogic {
for new_cookie in new_cookies {
// 如果饼时间超过2天,判断为补饼,不推送
if let Some(time) = new_cookie.timestamp {
if now - time > 2 * 24 * 60 * 1000 {
if now - time > 2 * 24 * 60 * 60 * 1000 {
continue;
}
}
Expand Down

0 comments on commit 843e994

Please sign in to comment.