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);
setTimeout(() => {
console.log(`🟩 EMIT`);
hub.emit(
'video',
JSON.stringify(answer)
);
}, 10000);
hub.emit(
'video',
JSON.stringify(answer)
);
// Enable Close call button
const closeCallBtn = document.getElementById('btnCloseCall');

View File

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