fix: 细节修复

This commit is contained in:
ZacharyZcR
2025-04-26 04:16:31 +08:00
parent 424c654c43
commit 247459a7f7
3 changed files with 4 additions and 5 deletions

View File

@@ -231,7 +231,7 @@ func CheckErrs(err error) error {
errLower := strings.ToLower(err.Error())
for _, key := range errs {
if strings.Contains(errLower, strings.ToLower(key)) {
time.Sleep(3 * time.Second)
time.Sleep(1 * time.Second)
return err
}
}