1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-12 22:33:25 +00:00

provide credentials if using fingerprint too

This commit is contained in:
kspearrin
2018-09-22 22:06:12 -04:00
parent 277fd67814
commit 7bf9354e32

View File

@@ -98,7 +98,7 @@ namespace Bit.iOS.Autofill
{
var lockService = Resolver.Resolve<ILockService>();
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)