Commit c1ca6907 authored by Muhammadali's avatar Muhammadali

update-

parent 401fdec5
{
"name": "boxdialer",
"version": "4.2.1",
"version": "4.2.2",
"description": "",
"main": "src/boxDialer.js",
"scripts": {
......
......@@ -427,33 +427,34 @@ export class BoxDialer {
'this_callSession_connection: ',
this.callSession.connection,
);
this.callSession.connection.onaddstream = () => {};
// if (this.callSession.connection) {
// this.callSession?.connection?.onaddstream = (e) => {
// console.log('--== UA Conn Added STREAM: ', e);
// let strmTrack = e.stream.getAudioTracks();
// if (strmTrack[0]) {
// let rmMediaStream = new MediaStream([strmTrack[0]]);
// this.remoteAudio.srcObject = rmMediaStream;
// this.remoteAudio.play();
// }
// };
// addEventListener;
// this.callSession?.connection?.addEventListener(
// 'onaddstream',
// (e) => {
// console.log('--== UA Conn Added STREAM: ', e);
// let strmTrack = e.stream.getAudioTracks();
// if (strmTrack[0]) {
// let rmMediaStream = new MediaStream([strmTrack[0]]);
// this.remoteAudio.srcObject = rmMediaStream;
// this.remoteAudio.play();
// }
// },
// );
// } else {
// console.error('connection not found');
// }
this.callSession.connection.onaddstream = (e) => {
};
if (this.callSession.connection) {
this.callSession?.connection?.onaddstream = (e) => {
console.log('--== UA Conn Added STREAM: ', e);
let strmTrack = e.stream.getAudioTracks();
if (strmTrack[0]) {
let rmMediaStream = new MediaStream([strmTrack[0]]);
this.remoteAudio.srcObject = rmMediaStream;
this.remoteAudio.play();
}
};
// this.callSession?.connection?.addEventListener(
// 'onaddstream',
// (e) => {
// console.log('--== UA Conn Added STREAM: ', e);
// let strmTrack = e.stream.getAudioTracks();
// if (strmTrack[0]) {
// let rmMediaStream = new MediaStream([strmTrack[0]]);
// this.remoteAudio.srcObject = rmMediaStream;
// this.remoteAudio.play();
// }
// },
// );
} else {
console.error('connection not found');
}
// innerCallerModal;
this.onSipStateChange.innerCallerModal({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment