Merge pull request #60 from Promix953/main

修复auth check间隔
This commit is contained in:
johlanse 2022-08-16 08:39:54 +08:00 committed by GitHub
commit 36101e9d62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -296,6 +296,6 @@ func check() {
_ = UpdateUser(user)
}
}
time.Sleep(time.Hour * time.Duration(rand.Intn(2)))
time.Sleep(time.Hour * time.Duration(rand.Intn(2)+1))
}
}