From 6bdfd7fbd8dbf0c2d0a50170e73767c7e00c805f Mon Sep 17 00:00:00 2001 From: Timo K Date: Wed, 27 Aug 2025 17:08:08 +0200 Subject: [PATCH] add comment Signed-off-by: Timo K --- src/state/CallViewModel.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/state/CallViewModel.ts b/src/state/CallViewModel.ts index 095b7d03..72351042 100644 --- a/src/state/CallViewModel.ts +++ b/src/state/CallViewModel.ts @@ -470,6 +470,8 @@ class Connection { this.stopped = false; const { url, jwt } = await this.sfuConfig; if (!this.stopped) await this.livekitRoom.connect(url, jwt); + // TODO-MULTI-SFU in this livekit room we really do not want to publish any tracks. + // this is only for testing purposes const tracks = await this.livekitRoom.localParticipant.createTracks({ audio: { deviceId: "default" }, });