mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-05 09:01:11 +01:00
PM-5064 Fix lock interaction between biometrics and vault timeout never (#2885)
This commit is contained in:
parent
afbcb212f6
commit
5b249bed67
@ -63,12 +63,20 @@ namespace Bit.Core.Services
|
||||
/// </param>
|
||||
public async Task<bool> IsLockedAsync(string userId = null)
|
||||
{
|
||||
// If biometrics are used, we can use the flag to determine locked state taking into account the auto unlock key for vault timeout never.
|
||||
var biometricSet = await IsBiometricLockSetAsync(userId);
|
||||
var hasAutoUnlockKey = await _cryptoService.HasAutoUnlockKeyAsync(userId);
|
||||
if (biometricSet && await _stateService.GetBiometricLockedAsync(userId) && !hasAutoUnlockKey)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!await _cryptoService.HasUserKeyAsync(userId))
|
||||
{
|
||||
try
|
||||
{
|
||||
// Filter out accounts without auto key
|
||||
if (!await _cryptoService.HasAutoUnlockKeyAsync(userId))
|
||||
if (!hasAutoUnlockKey)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -84,7 +92,6 @@ namespace Bit.Core.Services
|
||||
// Legacy users must migrate on web vault before login
|
||||
await LogOutAsync(false, userId);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Check again to verify auto key was set
|
||||
|
Loading…
Reference in New Issue
Block a user