This commit is contained in:
boufni95 2025-02-05 19:16:48 +00:00
parent 904cd97f38
commit acd5c39f89

View file

@ -46,7 +46,7 @@ export default class webRTC {
} }
const conn = this.connections[key] const conn = this.connections[key]
const iceCandidate: IceCandidate = JSON.parse(candidate) const iceCandidate: IceCandidate = JSON.parse(candidate)
console.log({ candidate }) console.log({ iceCandidate })
if (!iceCandidate.candidate) { if (!iceCandidate.candidate) {
await conn.addIceCandidate(undefined); await conn.addIceCandidate(undefined);
} else { } else {