diff --git a/apps/web/src/stores/CallStore.ts b/apps/web/src/stores/CallStore.ts index d025b0a014..119a0f6d6e 100644 --- a/apps/web/src/stores/CallStore.ts +++ b/apps/web/src/stores/CallStore.ts @@ -62,7 +62,10 @@ export class CallStore extends AsyncStoreWithClient { transports.forEach((t) => this.configuredMatrixRTCTransports.add(t)); } catch (ex) { // Expected, MSC not implemented. - if (ex instanceof MatrixError === false || ex.errcode !== "M_NOT_FOUND") { + // + // Homeservers will return a 404 M_UNRECOGNIZED matrix error if they + // don't implement a requested endpoint. + if (ex instanceof MatrixError === false || ex.errcode !== "M_UNRECOGNIZED") { logger.warn("Unexpected error when trying to fetch RTC transports", ex); } }