From 273fc9d3940ea58473f1e9bc71cb79ac604fa0e6 Mon Sep 17 00:00:00 2001 From: Alfred Jophy Date: Fri, 12 Dec 2025 11:29:59 +0530 Subject: [PATCH] Start CallEventHandler and GroupCallEventHandler if isVoipWithNoMediaAllowed is set to true. Signed-off-by: Alfred Jophy --- src/client.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client.ts b/src/client.ts index 5872dde99d..24f4680d18 100644 --- a/src/client.ts +++ b/src/client.ts @@ -1355,8 +1355,9 @@ export class MatrixClient extends TypedEventEmitter { if (this.isInitialSyncComplete()) { - if (supportsMatrixCall()) { + if (supportsMatrixCall() || this.isVoipWithNoMediaAllowed) { this.callEventHandler!.start(); this.groupCallEventHandler!.start(); }