Skip to content

Commit aa5b2b8

Browse files
committed
iOS null callback fix for setExternalUserId
Motivation: we want to make sure that the `setExternalUserId` works for iOS even if no callback is passed. Thus, we are re-adding the default callback but for iOS only. Note: for Android we want it to be nullable temporarily as a workaround for the current issue of the same callback firing multiple times (crashes) due to the `onSuccess` triggering once per channel. Note: in the future, we intend to make argument non-nullability or nullability consistent across both platforms.
1 parent 6392215 commit aa5b2b8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,10 @@ export default class OneSignal {
254254
return;
255255
}
256256

257+
if (!varArg2 && Platform.OS === 'ios') {
258+
varArg2 = function(){};
259+
}
260+
257261
RNOneSignal.setExternalUserId(externalId, varArg1, varArg2);
258262
}
259263

0 commit comments

Comments
 (0)