Skip to content

Commit

Permalink
Fix pod spec errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfej94 committed Nov 30, 2021
1 parent 95116cb commit 2172f20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/PassportKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public class PassportKit: NSObject {


public func localAuthententication(biometricsEnabled: Bool, completion: @escaping (Bool) -> Void) {
ownershipAuthentication(policy: biometricsEnabled ? .deviceOwnerAuthenticationWithBiometrics : .deviceOwnerAuthentication) { [weak self] result in
ownershipAuthentication(policy: biometricsEnabled ? .deviceOwnerAuthenticationWithBiometrics : .deviceOwnerAuthentication) { result in
completion(result == .authorised)
}
}
Expand Down

0 comments on commit 2172f20

Please sign in to comment.