This commit is contained in:
Sergiu Toma 2022-12-16 12:01:20 +02:00
parent 9634aac153
commit 449724537e
2 changed files with 8 additions and 14 deletions

View File

@ -20692,13 +20692,10 @@ const connectSendTransport = async () => {
}; };
console.log('SEND answer', answer); console.log('SEND answer', answer);
setTimeout(() => { hub.emit(
console.log(`🟩 EMIT`); 'video',
hub.emit( JSON.stringify(answer)
'video', );
JSON.stringify(answer)
);
}, 10000);
// Enable Close call button // Enable Close call button
const closeCallBtn = document.getElementById('btnCloseCall'); const closeCallBtn = document.getElementById('btnCloseCall');

View File

@ -334,13 +334,10 @@ const connectSendTransport = async () => {
}; };
console.log('SEND answer', answer); console.log('SEND answer', answer);
setTimeout(() => { hub.emit(
console.log(`🟩 EMIT`); 'video',
hub.emit( JSON.stringify(answer)
'video', );
JSON.stringify(answer)
);
}, 10000);
// Enable Close call button // Enable Close call button
const closeCallBtn = document.getElementById('btnCloseCall'); const closeCallBtn = document.getElementById('btnCloseCall');