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

Fix null error in SSO existing user flow (#1773)

This commit is contained in:
Thomas Rittson 2021-12-17 11:08:53 +10:00 committed by GitHub
parent 11aafac915
commit ed7440cc14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -447,7 +447,7 @@ namespace Bit.Sso.Controllers
if (existingUser != null)
{
if (existingUser.UsesKeyConnector && orgUser == null ||
orgUser.Status == OrganizationUserStatusType.Invited)
orgUser?.Status == OrganizationUserStatusType.Invited)
{
throw new Exception(_i18nService.T("UserAlreadyExistsKeyConnector"));
}