You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix crash when an IAM click action does not have an id
Cherry-pick of #1248
If an In App Message built using HTML is created improperly it can send a click action with a nil id to the SDK. This results in a crash.
if (![selfisClickAvailable:message withClickId:clickId])
933
933
return;
934
+
if (!clickId) {
935
+
[OneSignalLog onesignalLog:ONE_S_LL_ERROR message:@"sendClickRESTCall:withAction: call could not be made because the click action does not have an id."];
0 commit comments