acutally use fallback url

This commit is contained in:
Timo K.
2026-09-18 15:17:53 +02:00
parent eb8db733a6
commit d38116d2f0
+7
View File
@@ -223,6 +223,13 @@ const LoadedCallView: FC<LoadedProps> = ({
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,