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