Skip to content

Commit

Permalink
Merge pull request #57 from ZackMattor/master
Browse files Browse the repository at this point in the history
Make our object passed by DeepLinkHandler (iOS) actually an object
  • Loading branch information
aaustin committed Mar 6, 2016
2 parents e7d722c + 344192e commit f4346ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ios/BranchSDK.m
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ - (void)initSession:(CDVInvokedUrlCommand*)command
resultString = [NSString stringWithFormat:@"Init Error: %@", [error localizedDescription]];
}
NSLog(@"returning data to js interface..");
[self.commandDelegate evalJs:[NSString stringWithFormat:@"DeepLinkHandler('%@')", resultString]];
[self.commandDelegate evalJs:[NSString stringWithFormat:@"DeepLinkHandler(%@)", resultString]];
}];
}

Expand Down

0 comments on commit f4346ae

Please sign in to comment.