Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/stores/CallStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
// 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(() => {});

Check warning on line 58 in apps/web/src/stores/CallStore.ts

View workflow job for this annotation

GitHub Actions / Tests

Uncovered Line

Line 58 is not covered by tests
}
});

Expand Down
Loading