Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
jmagman committed Dec 26, 2024
1 parent 365fc2a commit f1a3d67
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,8 @@ - (nullable NSNumber *)deviceCanSupportBiometricsWithError:
return @YES;
}
// Biometry hardware is available, but possibly permissions were denied.
if (authError.code == LAErrorBiometryNotAvailable && context.biometryType != LABiometryTypeNone) {
if (authError.code == LAErrorBiometryNotAvailable &&
context.biometryType != LABiometryTypeNone) {
return @YES;
}
}
Expand Down

0 comments on commit f1a3d67

Please sign in to comment.