Skip to content

Commit

Permalink
Correct Forward Count
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonStalnaker authored May 17, 2021
1 parent 4ea5d3d commit 5b115c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mParticle-Kochava/MPKitKochava.m
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ - (MPKitExecStatus *)routeEvent:(MPEvent *)event {
kochavaEvent.infoDictionary = event.customAttributes;
[kochavaEvent send];

return [[MPKitExecStatus alloc] initWithSDKCode:@(MPKitInstanceKochava) returnCode:MPKitReturnCodeSuccess forwardCount:0];
return [[MPKitExecStatus alloc] initWithSDKCode:@(MPKitInstanceKochava) returnCode:MPKitReturnCodeSuccess];
}

- (MPKitExecStatus *)routeCommerceEvent:(MPCommerceEvent *)commerceEvent {
Expand All @@ -328,7 +328,7 @@ - (MPKitExecStatus *)routeCommerceEvent:(MPCommerceEvent *)commerceEvent {
kochavaEvent.infoDictionary = [info copy];
[kochavaEvent send];

return [[MPKitExecStatus alloc] initWithSDKCode:@(MPKitInstanceKochava) returnCode:MPKitReturnCodeSuccess forwardCount:0];
return [[MPKitExecStatus alloc] initWithSDKCode:@(MPKitInstanceKochava) returnCode:MPKitReturnCodeSuccess];
}

- (MPKitExecStatus *)logScreen:(MPEvent *)event {
Expand All @@ -337,7 +337,7 @@ - (MPKitExecStatus *)logScreen:(MPEvent *)event {
kochavaEvent.infoDictionary = event.customAttributes;
[kochavaEvent send];

return [[MPKitExecStatus alloc] initWithSDKCode:@(MPKitInstanceKochava) returnCode:MPKitReturnCodeSuccess forwardCount:0];
return [[MPKitExecStatus alloc] initWithSDKCode:@(MPKitInstanceKochava) returnCode:MPKitReturnCodeSuccess];
}

- (MPKitExecStatus *)setUserIdentity:(NSString *)identityString identityType:(MPUserIdentity)identityType {
Expand Down

0 comments on commit 5b115c0

Please sign in to comment.