summaryrefslogtreecommitdiff
path: root/client-web/source/user
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-12-22 08:17:57 +0100
committermetamuffin <metamuffin@disroot.org>2022-12-22 08:17:57 +0100
commit8a774d3a27d7c5d177f922821b8111570871f89a (patch)
treeb9c77d3fb09c5ecab01f8a376841175ad90ce8ee /client-web/source/user
parent3ebac79b844ad3504240804c0fe135d5976d3748 (diff)
downloadkeks-meet-8a774d3a27d7c5d177f922821b8111570871f89a.tar
keks-meet-8a774d3a27d7c5d177f922821b8111570871f89a.tar.bz2
keks-meet-8a774d3a27d7c5d177f922821b8111570871f89a.tar.zst
cleanup
Diffstat (limited to 'client-web/source/user')
-rw-r--r--client-web/source/user/remote.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/client-web/source/user/remote.ts b/client-web/source/user/remote.ts
index bab8eff..bd89e0e 100644
--- a/client-web/source/user/remote.ts
+++ b/client-web/source/user/remote.ts
@@ -92,7 +92,6 @@ export class RemoteUser extends User {
if (PREFS.notify_join) notify(`${this.display_name} joined`)
}
if (message.provide) {
- console.log(message.provide.id);
const d = new_remote_resource(this, message.provide)
if (!d) return
if (d.info.kind == "track" && d.info.track_kind == "audio" && PREFS.optional_audio_default_enable) this.request_resource(d)
@@ -171,14 +170,12 @@ export class RemoteUser extends User {
let stuff = "";
stuff += `ice-conn=${this.pc.iceConnectionState}; ice-gathering=${this.pc.iceGatheringState}; ice-trickle=${this.pc.canTrickleIceCandidates}; signaling=${this.pc.signalingState};\n`
stats.forEach(s => {
- // console.log("stat", s);
if (s.type == "candidate-pair" && s.selected) {
//@ts-ignore trust me, this works
if (!stats.get) return console.warn("no RTCStatsReport.get");
//@ts-ignore trust me, this works
const cpstat = stats.get(s.localCandidateId)
if (!cpstat) return console.warn("no stats");
- // console.log("cp", cpstat);
stuff += `via ${cpstat.candidateType}:${cpstat.protocol}:${cpstat.address}\n`
} else if (s.type == "codec") {
stuff += `using ${s.codecType ?? "dec/enc"}:${s.mimeType}(${s.sdpFmtpLine})\n`