Skip to content

Commit

Permalink
Merge pull request #1500 from dombartenope/logging_typo_fix
Browse files Browse the repository at this point in the history
Fixed typo in verbose logging from 'occured' to 'occurred'
  • Loading branch information
nan-li authored Oct 24, 2024
2 parents bf8472f + b7944c9 commit 75ac766
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 75ac766

Please sign in to comment.