File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -91,19 +91,19 @@ - (void)onClickInAppMessage:(OSInAppMessageClickEvent * _Nonnull)event {
9191}
9292
9393- (void )onWillDisplayInAppMessage : (OSInAppMessageWillDisplayEvent * _Nonnull)event {
94- [self sendEvent: OSEventString (InAppMessageWillDisplay) withBody: @{ @" message " : [event.message jsonRepresentation ]} ];
94+ [self sendEvent: OSEventString (InAppMessageWillDisplay) withBody: [event jsonRepresentation ]];
9595}
9696
9797- (void )onDidDisplayInAppMessage : (OSInAppMessageDidDisplayEvent * _Nonnull)event {
98- [self sendEvent: OSEventString (InAppMessageDidDisplay) withBody: @{ @" message " : [event.message jsonRepresentation ]} ];
98+ [self sendEvent: OSEventString (InAppMessageDidDisplay) withBody: [event jsonRepresentation ]];
9999}
100100
101101- (void )onWillDismissInAppMessage : (OSInAppMessageWillDismissEvent * _Nonnull)event {
102- [self sendEvent: OSEventString (InAppMessageWillDismiss) withBody: @{ @" message " : [event.message jsonRepresentation ]} ];
102+ [self sendEvent: OSEventString (InAppMessageWillDismiss) withBody: [event jsonRepresentation ]];
103103}
104104
105105- (void )onDidDismissInAppMessage : (OSInAppMessageDidDismissEvent * _Nonnull)event {
106- [self sendEvent: OSEventString (InAppMessageDidDismiss) withBody: @{ @" message " : [event.message jsonRepresentation ]} ];
106+ [self sendEvent: OSEventString (InAppMessageDidDismiss) withBody: [event jsonRepresentation ]];
107107}
108108
109109- (void )dealloc {
You can’t perform that action at this time.
0 commit comments