aboutsummaryrefslogtreecommitdiff
path: root/client-web/source/user/remote.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-09-11 14:07:43 +0200
committermetamuffin <metamuffin@disroot.org>2022-09-11 14:07:43 +0200
commited13a5e0e3ee1885c17f24d9f47a79915db3daea (patch)
treea6339f61061204e44f9fa37dafb968b06515c69b /client-web/source/user/remote.ts
parent537a237e4a04f18c59d91ca592984e46d99296d2 (diff)
downloadkeks-meet-ed13a5e0e3ee1885c17f24d9f47a79915db3daea.tar
keks-meet-ed13a5e0e3ee1885c17f24d9f47a79915db3daea.tar.bz2
keks-meet-ed13a5e0e3ee1885c17f24d9f47a79915db3daea.tar.zst
blob
Diffstat (limited to 'client-web/source/user/remote.ts')
-rw-r--r--client-web/source/user/remote.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/client-web/source/user/remote.ts b/client-web/source/user/remote.ts
index 48ab8e3..243279b 100644
--- a/client-web/source/user/remote.ts
+++ b/client-web/source/user/remote.ts
@@ -21,6 +21,7 @@ export class RemoteUser extends User {
this.peer = new RTCPeerConnection(RTC_CONFIG)
this.peer.onicecandidate = ev => {
if (!ev.candidate) return
+ log("webrtc", `ICE candidate set`, ev.candidate)
room.signaling.send_relay({ ice_candidate: ev.candidate.toJSON() }, this.id)
}
this.peer.ontrack = ev => {