swift: fix typo in url scheme (#3145)

This was preventing macos clients from connecting
This commit is contained in:
Gabi
2024-01-09 18:45:48 -03:00
committed by GitHub
parent 2af8d6096c
commit e31514371d

View File

@@ -57,7 +57,7 @@ private final class WebAuthenticationSession: NSObject,
.appendingQueryItem(URLQueryItem(name: "nonce", value: nonce))
.appendingQueryItem(URLQueryItem(name: "as", value: "client"))
return try await withCheckedThrowingContinuation { continuation in
let callbackURLScheme = "firezone-fd002021111"
let callbackURLScheme = "firezone-fd0020211111"
let session = ASWebAuthenticationSession(
url: url,
callbackURLScheme: callbackURLScheme