1.实名接口修改

2.用户余额更新bug修复
This commit is contained in:
张松
2025-01-06 11:46:52 +08:00
parent 6639e37fd4
commit f6fc55bf25
2 changed files with 5 additions and 3 deletions

View File

@@ -173,7 +173,8 @@ public class AppController {
}
if (errMsg != null || authErrMsg != null) {
return Result.error(errMsg + " " + authErrMsg);
authErrMsg = authErrMsg == null ? "" : authErrMsg;
return Result.error(errMsg == null ? authErrMsg : errMsg + " " + authErrMsg);
}
return Result.success();
// 去除首绑支付宝奖励