From 72a495644e3df13e9331205c29d5ccd9042fe1de Mon Sep 17 00:00:00 2001 From: Colin Frick Date: Thu, 12 Sep 2024 16:08:14 +0200 Subject: [PATCH] fix: error with closure --- Sources/FusionAuth/oauth/OAuthAuthorizeOptions.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/FusionAuth/oauth/OAuthAuthorizeOptions.swift b/Sources/FusionAuth/oauth/OAuthAuthorizeOptions.swift index 721a357..58c6ac4 100644 --- a/Sources/FusionAuth/oauth/OAuthAuthorizeOptions.swift +++ b/Sources/FusionAuth/oauth/OAuthAuthorizeOptions.swift @@ -28,7 +28,7 @@ public struct OAuthAuthorizeOptions { let userCode: String? public init( - redirectUri: String = "\(Bundle.main.bundleIdentifier ?? ""):/oauth2redirect/ios-provider", + redirectUri: String = "\(Bundle.main.bundleIdentifier):/oauth2redirect/ios-provider", idpHint: String? = nil, codeChallenge: String? = nil, codeChallengeMethod: OAuthCodeChallengeMethod? = nil,