From d38116d2f0c6868237874007ae53b03b4fe0a389 Mon Sep 17 00:00:00 2001 From: "Timo K." Date: Fri, 18 Sep 2026 15:17:53 +0200 Subject: [PATCH] acutally use fallback url --- src/room/CallView.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/room/CallView.tsx b/src/room/CallView.tsx index 0cf6f4cca..74e78987e 100644 --- a/src/room/CallView.tsx +++ b/src/room/CallView.tsx @@ -223,6 +223,13 @@ const LoadedCallView: FC = ({ const rtcParticipationManager = useRtcParticipationManager( useRustRtcSdk ? drivers : null, participationConfigValue, + { + // Element Call's own `config.json` LiveKit service, for a homeserver + // that advertises no transport: the precedence Element Call has always + // had, and the route by which a host (Element Web) hands over what it + // found in `.well-known`. + transportFallbackUrl: Config.get().livekit?.livekit_service_url, + }, ); const participationMemberships = useBehavior( rtcParticipationManager?.memberships$ ?? NO_PARTICIPATION_MEMBERSHIPS,