1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

Fix existing user checks (#1780)

This commit is contained in:
Thomas Rittson 2021-12-22 07:16:58 +10:00 committed by GitHub
parent fd3ce1bbf3
commit a14f16b34f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -446,8 +446,8 @@ namespace Bit.Sso.Controllers
// All Existing User flows handled below // All Existing User flows handled below
if (existingUser != null) if (existingUser != null)
{ {
if (existingUser.UsesKeyConnector && orgUser == null || if (existingUser.UsesKeyConnector &&
orgUser?.Status == OrganizationUserStatusType.Invited) (orgUser == null || orgUser.Status == OrganizationUserStatusType.Invited))
{ {
throw new Exception(_i18nService.T("UserAlreadyExistsKeyConnector")); throw new Exception(_i18nService.T("UserAlreadyExistsKeyConnector"));
} }