From c0e99d4047606462c74775deb5accb1c097e2765 Mon Sep 17 00:00:00 2001 From: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Date: Mon, 14 Sep 2020 14:27:30 -0500 Subject: [PATCH] Removed security stamp rotation during set-password SSO flow (#933) --- src/Core/Services/Implementations/UserService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/UserService.cs b/src/Core/Services/Implementations/UserService.cs index 61da89491..fb4b286d2 100644 --- a/src/Core/Services/Implementations/UserService.cs +++ b/src/Core/Services/Implementations/UserService.cs @@ -592,7 +592,7 @@ namespace Bit.Core.Services return IdentityResult.Failed(_identityErrorDescriber.UserAlreadyHasPassword()); } - var result = await UpdatePasswordHash(user, masterPassword); + var result = await UpdatePasswordHash(user, masterPassword, true, false); if (!result.Succeeded) { return result;