Skip to content

Commit 2185411

Browse files
authored
Merge pull request #688 from BranchMetrics/CORE-1898-fix-iOS-compilation-issue
CORE-1898 correct signature as a quick fix.
2 parents dc083f8 + d03639b commit 2185411

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ios/BranchSDK.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ - (void)lastAttributedTouchData:(CDVInvokedUrlCommand *)command {
796796
NSMutableDictionary *json = [NSMutableDictionary new];
797797

798798
Branch *branch = [self getInstance];
799-
[branch lastAttributedTouchDataWithAttributionWindow:30 completion:^(BranchLastAttributedTouchData * _Nullable latd) {
799+
[branch lastAttributedTouchDataWithAttributionWindow:30 completion:^(BranchLastAttributedTouchData * _Nullable latd, NSError * _Nullable error) {
800800
CDVPluginResult* pluginResult = nil;
801801
if (latd) {
802802
[json setObject:latd.attributionWindow forKey:@"attribution_window"];

0 commit comments

Comments
 (0)