Skip to content

Commit 909a765

Browse files
authored
Fix #2 callback due to missing / in url building
1 parent 9048713 commit 909a765

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CallbackURLKit/Manager.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public class Manager {
196196
let xcuComponents = NSURLComponents()
197197
xcuComponents.scheme = scheme
198198
xcuComponents.host = kXCUHost
199-
xcuComponents.path = kResponse
199+
xcuComponents.path = "/" + kResponse
200200

201201
let xcuParams: Parameters = [kRequestID: request.ID]
202202

@@ -272,4 +272,4 @@ extension Manager {
272272
}
273273

274274
}
275-
#endif
275+
#endif

0 commit comments

Comments
 (0)