Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
acopeland-bw committed Jul 23, 2021
1 parent 62f13c3 commit ae5cd75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WebRtc/Utils/WebRtcTransfer.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ public static function generateTransferBxmlVerb($deviceToken, $voiceCallId, $sip
* @return string $sipUri The SIP URI to transfer the call to
*/
$formattedCallId = substr(str_replace("-", "", $voiceCallId), 1);
return '<Transfer><SipUri uui="' . $formattedCallId . ';encoding=base64' . $deviceToken . ';encoding=jwt">' . $sipUri . '</SipUri></Transfer>';
return '<Transfer><SipUri uui="' . $formattedCallId . ';encoding=base64,' . $deviceToken . ';encoding=jwt">' . $sipUri . '</SipUri></Transfer>';
}
}

0 comments on commit ae5cd75

Please sign in to comment.