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:
parent
fd3ce1bbf3
commit
a14f16b34f
@ -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"));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user