diff --git a/src/services/webRTC/index.ts b/src/services/webRTC/index.ts index 5f2989b5..3188b3de 100644 --- a/src/services/webRTC/index.ts +++ b/src/services/webRTC/index.ts @@ -46,6 +46,7 @@ export default class webRTC { } const conn = this.connections[key] const iceCandidate: IceCandidate = JSON.parse(candidate) + console.log({ candidate }) if (!iceCandidate.candidate) { await conn.addIceCandidate(undefined); } else {