mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Fix existing user checks (#1780)
This commit is contained in:
parent
fd3ce1bbf3
commit
a14f16b34f
@ -446,8 +446,8 @@ namespace Bit.Sso.Controllers
|
||||
// All Existing User flows handled below
|
||||
if (existingUser != null)
|
||||
{
|
||||
if (existingUser.UsesKeyConnector && orgUser == null ||
|
||||
orgUser?.Status == OrganizationUserStatusType.Invited)
|
||||
if (existingUser.UsesKeyConnector &&
|
||||
(orgUser == null || orgUser.Status == OrganizationUserStatusType.Invited))
|
||||
{
|
||||
throw new Exception(_i18nService.T("UserAlreadyExistsKeyConnector"));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user