diff --git a/app/products/calls/connection.ts b/app/products/calls/connection.ts index 29f72f43b..008f4615c 100644 --- a/app/products/calls/connection.ts +++ b/app/products/calls/connection.ts @@ -203,7 +203,7 @@ export async function newClient(channelID: string, iceServers: ICEServersConfigs ws.on('message', ({data}) => { const msg = JSON.parse(data); - if (msg.type === 'answer' || msg.type === 'offer') { + if (msg.type === 'answer' || msg.type === 'candidate' || msg.type === 'offer') { peer?.signal(data); } });