From 7bf9354e326b71e34bf9637c2cfec125cd9d371e Mon Sep 17 00:00:00 2001 From: kspearrin Date: Sat, 22 Sep 2018 22:06:12 -0400 Subject: [PATCH] provide credentials if using fingerprint too --- src/iOS.Autofill/CredentialProviderViewController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iOS.Autofill/CredentialProviderViewController.cs b/src/iOS.Autofill/CredentialProviderViewController.cs index ead6e58c9..aed24579b 100644 --- a/src/iOS.Autofill/CredentialProviderViewController.cs +++ b/src/iOS.Autofill/CredentialProviderViewController.cs @@ -98,7 +98,7 @@ namespace Bit.iOS.Autofill { var lockService = Resolver.Resolve(); 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)