diff --git a/public/index.js b/public/index.js index f96ae84..ebe77cd 100644 --- a/public/index.js +++ b/public/index.js @@ -300,10 +300,12 @@ const connectSendTransport = async () => { }; console.log('SEND answer', answer); - hub.emit( - 'video', - JSON.stringify(answer) - ); + setTimeout(() => { + hub.emit( + 'video', + JSON.stringify(answer) + ); + }, 7000); // Enable Close call button const closeCallBtn = document.getElementById('btnCloseCall');