LH-253: Added callId for transportclose and producerclose events #12
4
app.js
4
app.js
@ -299,14 +299,14 @@ peers.on('connection', async socket => {
|
||||
videoCalls[callId].consumer.on('transportclose', () => {
|
||||
const callId = socketDetails[socket.id];
|
||||
console.log('transport close from consumer', callId);
|
||||
closeCall();
|
||||
closeCall(callId);
|
||||
|
||||
});
|
||||
|
||||
// https://mediasoup.org/documentation/v3/mediasoup/api/#consumer-on-producerclose
|
||||
videoCalls[callId].consumer.on('producerclose', () => {
|
||||
const callId = socketDetails[socket.id];
|
||||
console.log('producer of consumer closed', callId);
|
||||
closeCall();
|
||||
closeCall(callId);
|
||||
});
|
||||
|
||||
// From the consumer extract the following params to send back to the Client
|
||||
|
Loading…
Reference in New Issue
Block a user
We should test
callId
to be a valid value before using it incloseCall
.