LINXD-2329: Don't close the call if initiator or receiver close the transport #28

Closed
sergiu wants to merge 13 commits from LINXD-2329-video-turn-on-camera-after-call-start into develop
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 7474b083e2 - Show all commits

View File

@ -20455,7 +20455,8 @@ setTimeout(() => {
socket.on('new-producer', ({ callId }) => {
console.log(`🟢 new-producer | callId: ${callId} | Ready to consume`);
!consumerTransport && consume()
remoteVideo.play()
consume()
})
}

View File

@ -97,7 +97,8 @@ setTimeout(() => {
socket.on('new-producer', ({ callId }) => {
console.log(`🟢 new-producer | callId: ${callId} | Ready to consume`);
!consumerTransport && consume()
remoteVideo.play()
consume()
})
}