Skip to content

Commit ae5cd75

Browse files
committed
Fix bug
1 parent 62f13c3 commit ae5cd75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WebRtc/Utils/WebRtcTransfer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ public static function generateTransferBxmlVerb($deviceToken, $voiceCallId, $sip
2828
* @return string $sipUri The SIP URI to transfer the call to
2929
*/
3030
$formattedCallId = substr(str_replace("-", "", $voiceCallId), 1);
31-
return '<Transfer><SipUri uui="' . $formattedCallId . ';encoding=base64' . $deviceToken . ';encoding=jwt">' . $sipUri . '</SipUri></Transfer>';
31+
return '<Transfer><SipUri uui="' . $formattedCallId . ';encoding=base64,' . $deviceToken . ';encoding=jwt">' . $sipUri . '</SipUri></Transfer>';
3232
}
3333
}

0 commit comments

Comments
 (0)