Skip to content

Commit f68fae0

Browse files
committed
Fix name of logEvent method exposed to JS on Android.
1 parent 7460a02 commit f68fae0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/io/branch/rnbranch/RNBranchModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ public void logout() {
322322
}
323323

324324
@ReactMethod
325-
public void logEventWithUniversalObjects(ReadableArray contentItems, String eventName, ReadableMap params, Promise promise) {
325+
public void logEvent(ReadableArray contentItems, String eventName, ReadableMap params, Promise promise) {
326326
List<BranchUniversalObject> buos = new ArrayList<>();
327327
for (int i = 0; i < contentItems.size(); ++ i) {
328328
String ident = contentItems.getString(i);

0 commit comments

Comments
 (0)