diff --git a/apps/web/src/stores/CallStore.ts b/apps/web/src/stores/CallStore.ts index 128818c672f..9c1c721a51f 100644 --- a/apps/web/src/stores/CallStore.ts +++ b/apps/web/src/stores/CallStore.ts @@ -55,7 +55,7 @@ export class CallStore extends AsyncStoreWithClient { // Fetch transports, but don't await the result. this.matrixClient.cachedRtcTransports.wait().catch(() => { if (SdkConfig.get("enable_client_well_known_lookups")) { - void this.matrixClient?.waitForClientWellKnown(); + this.matrixClient?.waitForClientWellKnown().catch(() => {}); } });