Skip to content

Commit afedc2c

Browse files
committed
Add missing null argument in startCall override on Android
1 parent 2beba86 commit afedc2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/io/wazo/callkeep/RNCallKeepModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ public void startCall(String uuid, String number, String callerName) {
364364

365365
@ReactMethod
366366
public void startCall(String uuid, String number, String callerName, boolean hasVideo) {
367-
this.startCall(uuid, number, callerName, hasVideo);
367+
this.startCall(uuid, number, callerName, hasVideo, null);
368368
}
369369

370370
@ReactMethod

0 commit comments

Comments
 (0)