File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ + (MPCommerceEvent *)MPCommerceEvent:(id)json {
417417 commerceEvent.checkoutStep = [json[@" checkoutStep" ] intValue ];
418418 commerceEvent.nonInteractive = [json[@" nonInteractive" ] boolValue ];
419419 if (json[@" shouldUploadEvent" ] != nil ) {
420- event .shouldUploadEvent = [json[@" shouldUploadEvent" ] boolValue ]
420+ commerceEvent .shouldUploadEvent = [json[@" shouldUploadEvent" ] boolValue ];
421421 }
422422
423423 NSMutableArray *products = [NSMutableArray array ];
@@ -606,7 +606,7 @@ + (MPEvent *)MPEvent:(id)json {
606606 event.startTime = json[@" startTime" ];
607607 event.type = [json[@" type" ] intValue ];
608608 if (json[@" shouldUploadEvent" ] != nil ) {
609- event.shouldUploadEvent = [json[@" shouldUploadEvent" ] boolValue ]
609+ event.shouldUploadEvent = [json[@" shouldUploadEvent" ] boolValue ];
610610 }
611611
612612 NSDictionary *jsonFlags = json[@" customFlags" ];
You can’t perform that action at this time.
0 commit comments