diff --git a/server/dbdata/user.go b/server/dbdata/user.go index 18db0997..b4d7817a 100644 --- a/server/dbdata/user.go +++ b/server/dbdata/user.go @@ -117,13 +117,13 @@ func checkLocalUser(name, pwd, group string) error { } // 判断otp信息 pinCode := pwd - // if !v.DisableOtp { - // pinCode = pwd[:pl-6] - // otp := pwd[pl-6:] - // if !CheckOtp(name, otp, v.OtpSecret) { - // return fmt.Errorf("%s %s", name, "动态码错误") - // } - // } + if !v.DisableOtp { + pinCode = pwd[:pl-6] + otp := pwd[pl-6:] + if !CheckOtp(name, otp, v.OtpSecret) { + return fmt.Errorf("%s %s", name, "动态码错误") + } + } // 判断用户密码 if pinCode != v.PinCode {