mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
adjust faceid check logic
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user