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 888fafe commit 94fdca9Copy full SHA for 94fdca9
src/ios/BranchSDK.m
@@ -58,6 +58,15 @@ - (id)handleDeepLink:(CDVInvokedUrlCommand*)command
58
return [NSNumber numberWithBool:[[Branch getInstance] handleDeepLink:url]];
59
}
60
61
+- (id)handleDeepLinkWithNewSession:(CDVInvokedUrlCommand*)command
62
+{
63
+ NSString *arg = [command.arguments objectAtIndex:0];
64
+ NSURL *url = [NSURL URLWithString:arg];
65
+ self.deepLinkUrl = [url absoluteString];
66
+
67
+ return [NSNumber numberWithBool:[[Branch getInstance] handleDeepLinkWithNewSession:url]];
68
+}
69
70
- (void)continueUserActivity:(CDVInvokedUrlCommand*)command
71
{
72
0 commit comments