Browse Source

修复管理后台的社交登录时,传入的用户类型不正确

YunaiV 3 years ago
parent
commit
6471c8d586

+ 1 - 1
yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java

@@ -194,7 +194,7 @@ public class AdminAuthServiceImpl implements AdminAuthService {
     @Override
     public String socialLogin(AuthSocialLoginReqVO reqVO, String userIp, String userAgent) {
         // 使用 code 授权码,进行登录。然后,获得到绑定的用户编号
-        Long userId = socialUserService.getBindUserId(UserTypeEnum.MEMBER.getValue(), reqVO.getType(),
+        Long userId = socialUserService.getBindUserId(UserTypeEnum.ADMIN.getValue(), reqVO.getType(),
                 reqVO.getCode(), reqVO.getState());
         if (userId == null) {
             throw exception(AUTH_THIRD_LOGIN_NOT_BIND);