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:
committed by
GitHub
parent
12f8c7b0d3
commit
9c1a206751
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user