Skip to content

Commit

Permalink
fix(forefront): done text
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangsx committed Jun 9, 2023
1 parent 126c81d commit 0a0acef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/forefront/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class AccountPool {

public get(): Account {
const now = moment();
const minInterval = 3000 * 60 * 60 + 10 * 60;// 3hour + 10min
const minInterval = 3 * 60 * 60 + 10 * 60;// 3hour + 10min
for (const item of this.pool) {
if (now.unix() - moment(item.last_use_time).unix() > minInterval) {
console.log(`find old login account:`, item);
Expand Down

0 comments on commit 0a0acef

Please sign in to comment.