1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 10:34:07 +00:00

PM-3450 Fix has master password with mp key hash check (#2689)

This commit is contained in:
Federico Maccaroni
2023-08-14 17:46:07 -03:00
committed by GitHub
parent 12f8c7b0d3
commit 9c1a206751

View File

@@ -72,7 +72,7 @@ namespace Bit.Core.Services
{
async Task<bool> CheckMasterKeyHashAsync()
{
return !checkMasterKeyHash && await _cryptoService.GetMasterKeyHashAsync() != null;
return !checkMasterKeyHash || await _cryptoService.GetMasterKeyHashAsync() != null;
};
var decryptOptions = await _stateService.GetAccountDecryptionOptions();