diff options
| author | metamuffin <metamuffin@disroot.org> | 2022-12-22 08:17:57 +0100 | 
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2022-12-22 08:17:57 +0100 | 
| commit | 8a774d3a27d7c5d177f922821b8111570871f89a (patch) | |
| tree | b9c77d3fb09c5ecab01f8a376841175ad90ce8ee /client-web/source/user | |
| parent | 3ebac79b844ad3504240804c0fe135d5976d3748 (diff) | |
| download | keks-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.ts | 3 | 
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` | 
