Merge pull request #815 from saozimian/master

bugfix:登录逻辑异常修复( #814 )
pull/822/head
玖亖伍 2022-08-29 11:23:40 +08:00 committed by GitHub
commit 25f9d34edb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -279,9 +279,8 @@ func GetUserListId(contact_access_token string, userid string) (user_info WorkWe
info = WorkWeixinDeptUserInfo{
UserId: uir.DeptUser[i].UserId,
}
} else {
return info, uir.ErrMsg, false
return info, "", true
}
}
return info, "", true
return info, uir.ErrMsg, false
}