adjust faceid check logic

This commit is contained in:
Kyle Spearrin 2017-11-29 23:29:13 -05:00
parent aa61331181
commit a2c962c2f6
1 changed files with 6 additions and 2 deletions

View File

@ -37,8 +37,12 @@ namespace Bit.iOS.Core.Services
} }
var context = new LAContext(); var context = new LAContext();
return context.CanEvaluatePolicy(LAPolicy.DeviceOwnerAuthenticationWithBiometrics, out NSError e) && if(!context.CanEvaluatePolicy(LAPolicy.DeviceOwnerAuthenticationWithBiometrics, out NSError e))
context.BiometryType == LABiometryType.TypeFaceId; {
return false;
}
return context.BiometryType == LABiometryType.TypeFaceId;
} }
} }
} }