Skip to content

Commit

Permalink
Merge pull request #5 from shwangMP/patch-1
Browse files Browse the repository at this point in the history
Fix iOS transaction attributes conversion
  • Loading branch information
samdozor authored Jan 31, 2019
2 parents ade8fe5 + 4d02203 commit 3ea6ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Plugins/iOS/mParticleUnity.m
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ + (MPPromotion *)MPPromotion:(id)json {
}

+ (MPTransactionAttributes *)MPTransactionAttributes:(id)json {
MPTransactionAttributes *transactionAttributes;
MPTransactionAttributes *transactionAttributes = [[MPTransactionAttributes alloc] init];
transactionAttributes.affiliation = json[@"Affiliation"];
transactionAttributes.couponCode = json[@"CouponCode"];
transactionAttributes.shipping = json[@"Shipping"];
Expand Down

0 comments on commit 3ea6ade

Please sign in to comment.