From 919e5812f9bf7edfe7bdca7038a2367fc21bf2d4 Mon Sep 17 00:00:00 2001 From: wanglei <34475144@qqcom> Date: Wed, 19 Nov 2025 17:49:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=94=A8=E6=88=B7=E7=99=BB?= =?UTF-8?q?=E5=BD=95=E6=8F=90=E7=A4=BA=E7=94=A8=E6=88=B7=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/service/oauth/oauth.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/service/oauth/oauth.lua b/src/service/oauth/oauth.lua index 4bfa51a..fd9b84b 100644 --- a/src/service/oauth/oauth.lua +++ b/src/service/oauth/oauth.lua @@ -105,7 +105,7 @@ local function authorizatePassword(args) -- 2.验证用户名和密码,应用程序id和应用程序密钥 local code, res = oauthDao.authenticateUserPasswd(args.username, args.password) if code ~= 0 or res == nil then - resp:response(status.ACCOUNT_NOT_EXIST) + resp:response(status.USER_LOGIN_ERROR) return end print("验证用户名和密码: ", args.username)