Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -734,9 +734,9 @@ - (BOOL)shouldDismissMessageWithPanGestureOffset:(double)offset withVelocity:(do
- (void)jsEventOccurredWithBody:(NSData *)body {
let event = [OSInAppMessageBridgeEvent instanceWithData:body];

NSString *eventMessage = [NSString stringWithFormat:@"Action Occured with Event: %@", event];
NSString *eventMessage = [NSString stringWithFormat:@"Action Occurred with Event: %@", event];
[OneSignalLog onesignalLog:ONE_S_LL_VERBOSE message:eventMessage];
NSString *eventTypeMessage = [NSString stringWithFormat:@"Action Occured with Event Type: %lu", (unsigned long)event.type];
NSString *eventTypeMessage = [NSString stringWithFormat:@"Action Occurred with Event Type: %lu", (unsigned long)event.type];
[OneSignalLog onesignalLog:ONE_S_LL_VERBOSE message:eventTypeMessage];

if (event) {
Expand Down
Loading