We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af95d1 commit 168143aCopy full SHA for 168143a
android/src/main/java/io/branch/rnbranch/RNBranchModule.java
@@ -384,7 +384,9 @@ public void setIdentity(String identity) {
384
385
@ReactMethod
386
public void setRequestMetadataKey(String key, String value) {
387
- setRequestMetadata(key, value);
+ // setRequestMetadata does not do what it appears to do. Call directly to the native code.
388
+ Branch branch = Branch.getInstance();
389
+ branch.setRequestMetadata(key, value);
390
}
391
392
0 commit comments