From 41471e2292af09214848308c15873aff24536160 Mon Sep 17 00:00:00 2001 From: fkwp Date: Thu, 21 Aug 2025 19:22:23 +0200 Subject: [PATCH] Refine MatrixRTC connection wording --- 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, ), );