1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

Removed security stamp rotation during set-password SSO flow (#933)

This commit is contained in:
Vincent Salucci
2020-09-14 14:27:30 -05:00
committed by GitHub
parent dcded43f86
commit c0e99d4047

View File

@ -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;