LH-259-mediasoup-always-return-a-callback-response-to-clients #13

Merged
cristi merged 5 commits from LH-259-mediasoup-always-return-a-callback-response-to-clients into develop 2022-10-25 16:18:54 +00:00
Showing only changes of commit f4ebf92783 - Show all commits

6
app.js
View File

@ -251,9 +251,9 @@ peers.on('connection', async socket => {
});
// Send back to the client the Producer's id
// callback({
// id: videoCalls[callId].producer.id
// });
callback && callback({
id: videoCalls[callId].producer.id
});
} catch (error) {
console.log(`ERROR | transport-produce | callId ${socketDetails[socket.id]} | ${error.message}`);
}