From 80cb9fbc0ac7226ba20d81cda4a07ce4e845bb43 Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Mon, 27 Oct 2025 14:36:20 -0700 Subject: [PATCH] Improve calling preload script --- ts/services/calling.preload.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ts/services/calling.preload.ts b/ts/services/calling.preload.ts index 380fe614f3..d9e9de76b7 100644 --- a/ts/services/calling.preload.ts +++ b/ts/services/calling.preload.ts @@ -2369,6 +2369,12 @@ export class CallingClass { return; } + const logId = getLogId({ + source: 'CallingClass.setOutgoingAudio', + conversationId, + }); + log.info(`${logId}: set to ${enabled}`); + if (call instanceof Call) { call.setOutgoingAudioMuted(!enabled); } else if (call instanceof GroupCall) { @@ -2378,6 +2384,7 @@ export class CallingClass { } muteStateChange.setIsMuted(!enabled); + log.info(`${logId}: set to ${enabled} done`); } setOutgoingAudioRemoteMuted(conversationId: string, source: number): void {