diff --git a/src/Core/Services/Implementations/UserService.cs b/src/Core/Services/Implementations/UserService.cs index 61da89491d..fb4b286d2a 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;