Skip to content

Commit

Permalink
Fix hasVideo attribute not casted to string
Browse files Browse the repository at this point in the history
  • Loading branch information
manuquentin committed May 26, 2022
1 parent 5d8b90c commit 8de84e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public void reportNewIncomingCall(String uuid, String number, String callerName,
args.putString("handle", number);
args.putString("callUUID", uuid);
args.putString("name", callerName);
args.putString("hasVideo", hasVideo);
args.putString("hasVideo", String.valueOf(hasVideo));
if (payload != null) {
args.putString("payload", payload);
}
Expand Down

0 comments on commit 8de84e3

Please sign in to comment.