We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aada5c commit 6667926Copy full SHA for 6667926
Sources/Shared/Stamper.swift
@@ -117,11 +117,14 @@ public class Stamper {
117
}
118
119
120
- guard let challenge = payload.compactMap({ String(format: "%02x", $0) }).joined().data(using: .utf8) else {
+ guard
121
+ let challenge = payload.compactMap({ String(format: "%02x", $0) }).joined().data(
122
+ using: .utf8)
123
+ else {
124
continuation.resume(throwing: StampError.assertionFailed)
- return
125
+ return
126
-
127
+
128
self.passkeyManager?.assertPasskey(challenge: challenge)
129
130
0 commit comments