From a7008d37c61472a653467b33b9305ee78a8917db Mon Sep 17 00:00:00 2001 From: Timo K Date: Mon, 19 Jan 2026 13:54:46 +0100 Subject: [PATCH] better log msg --- src/state/CallViewModel/localMember/LocalTransport.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/state/CallViewModel/localMember/LocalTransport.ts b/src/state/CallViewModel/localMember/LocalTransport.ts index d4a56126..680fe4dd 100644 --- a/src/state/CallViewModel/localMember/LocalTransport.ts +++ b/src/state/CallViewModel/localMember/LocalTransport.ts @@ -347,10 +347,9 @@ async function makeTransport( } catch (ex) { if (ex instanceof MatrixError && ex.httpStatus === 404) { // Expected, this is an unstable endpoint and it's not required. + // There will be expected 404 errors in the console. When we check if synapse supports the endpoint. logger.debug( - "Backend does not provide any RTC transports (will retry with well-known.)", - "Your server admin needs to update the matrix homeserver.", - "(The 404 erros in the console above are expectet to check if synapse supports the endpoint.)", + "Matrix homeserver does not provide any RTC transports via `/rtc/transports` (will retry with well-known.)", ); } else if (ex instanceof FailToGetOpenIdToken) { throw ex;