mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
always set FingerprintLocked explicitly
This commit is contained in:
parent
07bc425046
commit
9766ebc8e3
1 changed files with 1 additions and 5 deletions
|
@ -125,11 +125,7 @@ namespace Bit.Core.Services
|
|||
logService.Info("LockAsync PinLocked = true");
|
||||
PinLocked = true;
|
||||
}
|
||||
if(await IsFingerprintLockSetAsync())
|
||||
{
|
||||
logService.Info("LockAsync 3");
|
||||
FingerprintLocked = true;
|
||||
}
|
||||
FingerprintLocked = await IsFingerprintLockSetAsync();
|
||||
if(FingerprintLocked || PinLocked)
|
||||
{
|
||||
logService.Info("LockAsync 4");
|
||||
|
|
Loading…
Reference in a new issue