mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-05-12 17:58:40 +08:00
Fix for Invites Module error requestCode must be in 16 bits (#1474)
changed REQUEST_INVITE to value below 2^16 to fix error requestCode must be in 16 bits error Issue is here: https://github.com/invertase/react-native-firebase/issues/1458
This commit is contained in:
committed by
Michael Diarmid
parent
5fefab5b35
commit
bcc31ad631
@@ -31,7 +31,7 @@ import io.invertase.firebase.Utils;
|
||||
|
||||
public class RNFirebaseInvites extends ReactContextBaseJavaModule implements ActivityEventListener, LifecycleEventListener {
|
||||
private static final String TAG = "RNFirebaseInvites";
|
||||
private static final int REQUEST_INVITE = 81283;
|
||||
private static final int REQUEST_INVITE = 17517;
|
||||
private boolean mInitialInvitationInitialized = false;
|
||||
private String mInitialDeepLink = null;
|
||||
private String mInitialInvitationId = null;
|
||||
|
||||
Reference in New Issue
Block a user