From 482e2f8f6fa8e7d3678d90d3206ef30394c90287 Mon Sep 17 00:00:00 2001 From: fkwp Date: Fri, 22 Aug 2025 12:34:18 +0200 Subject: [PATCH] Refine MatrixRTC connection wording (#3463) --- src/state/CallViewModel.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/state/CallViewModel.ts b/src/state/CallViewModel.ts index 3b0a933d..d7bf1812 100644 --- a/src/state/CallViewModel.ts +++ b/src/state/CallViewModel.ts @@ -1620,12 +1620,14 @@ export class CallViewModel extends ViewModel { for (const p of publications) { if (p.track?.isUpstreamPaused === false) { const kind = p.track.kind; - logger.log(`Pausing ${kind} track (no MatrixRTC connection)`); + logger.log( + `Pausing ${kind} track (uncertain MatrixRTC connection)`, + ); p.track .pauseUpstream() .catch((e) => logger.error( - `Failed to pause ${kind} track after MatrixRTC connection loss`, + `Failed to pause ${kind} track after entering uncertain MatrixRTC connection`, e, ), );