mirror of
https://github.com/bitwarden/android.git
synced 2025-01-11 18:57:39 +03:00
provide credentials if using fingerprint too
This commit is contained in:
parent
277fd67814
commit
7bf9354e32
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ namespace Bit.iOS.Autofill
|
||||||
{
|
{
|
||||||
var lockService = Resolver.Resolve<ILockService>();
|
var lockService = Resolver.Resolve<ILockService>();
|
||||||
var lockType = lockService.GetLockTypeAsync(false).GetAwaiter().GetResult();
|
var lockType = lockService.GetLockTypeAsync(false).GetAwaiter().GetResult();
|
||||||
canGetCredentials = lockType == App.Enums.LockType.None;
|
canGetCredentials = lockType == App.Enums.LockType.Fingerprint || lockType == App.Enums.LockType.None;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!canGetCredentials)
|
if(!canGetCredentials)
|
||||||
|
|
Loading…
Reference in a new issue