LINXD-2209: Check for router in videoCalls

This commit is contained in:
Sergiu Toma 2022-09-15 09:33:30 +03:00
parent f629012712
commit 7198dc91b1
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -118,7 +118,7 @@ peers.on('connection', async socket => {
})
socket.on('createRoom', async ({ callId }, callback) => {
if (videoCalls[callId]?.router === undefined) {
if (videoCalls[callId] && videoCalls[callId].router === undefined) {
console.log('[createRoom] callId', callId);
videoCalls[callId].router = await worker.createRouter({ mediaCodecs });
console.log(`[createRoom] Router ID: ${videoCalls[callId].router.id}`)