Skip to content

Commit

Permalink
Merge pull request #815 from saozimian/master
Browse files Browse the repository at this point in the history
bugfix:登录逻辑异常修复( #814 )
  • Loading branch information
gsw945 authored Aug 29, 2022
2 parents 6648078 + 582f255 commit 25f9d34
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions utils/workweixin/workweixin.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 25f9d34

Please sign in to comment.