From 4b346ff7eab2e58e9faf03fe78ba83c3eb695c11 Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Fri, 10 Sep 2021 23:25:08 +1000 Subject: [PATCH] Fix null error when provisioning new SSO user (#1578) --- bitwarden_license/src/Sso/Controllers/AccountController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitwarden_license/src/Sso/Controllers/AccountController.cs b/bitwarden_license/src/Sso/Controllers/AccountController.cs index 420e0f7985..abb625ce0d 100644 --- a/bitwarden_license/src/Sso/Controllers/AccountController.cs +++ b/bitwarden_license/src/Sso/Controllers/AccountController.cs @@ -520,7 +520,7 @@ namespace Bit.Sso.Controllers } // Delete any stale user record to be safe - await DeleteExistingSsoUserRecord(existingUser.Id, orgId, orgUser); + await DeleteExistingSsoUserRecord(user.Id, orgId, orgUser); // Create sso user record await CreateSsoUserRecord(providerUserId, user.Id, orgId);