Skip to content

Commit 1a49292

Browse files
authored
Update OIDExternalUserAgentIOS.m
Fix missing @
1 parent 8f4cb4a commit 1a49292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/AppAuth/iOS/OIDExternalUserAgentIOS.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ - (BOOL)presentExternalUserAgentRequest:(id<OIDExternalUserAgentRequest>)request
171171

172172
// if none of the above worked, try to open the URL in Safari
173173
if (!openedUserAgent){
174-
openedUserAgent = [[UIApplication sharedApplication] openURL:requestURL options:{} completionHandler:nil];
174+
openedUserAgent = [[UIApplication sharedApplication] openURL:requestURL options:@{} completionHandler:nil];
175175
}
176176

177177
if (!openedUserAgent) {

0 commit comments

Comments
 (0)