From ee24041cba66ee54974ba5932a21c5743fcf22b7 Mon Sep 17 00:00:00 2001 From: Hoan Luu Huu <110280845+xquanluu@users.noreply.github.com> Date: Sat, 20 Jul 2024 23:31:25 +0700 Subject: [PATCH] Allow joining conference as muted (#821) * allow entering conference as muted * allow entering conference as muted --- lib/tasks/conference.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/tasks/conference.js b/lib/tasks/conference.js index 44ad9544..6692a874 100644 --- a/lib/tasks/conference.js +++ b/lib/tasks/conference.js @@ -351,7 +351,9 @@ class Conference extends Task { Object.assign(opts, {flags: { ...(this.endConferenceOnExit && {endconf: true}), ...(this.startConferenceOnEnter && {moderator: true}), - ...((this.joinMuted || this.speakOnlyTo) && {joinMuted: true}), + //https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Modules/mod_conference_3965534/ + // mute | Enter conference muted + ...((this.joinMuted || this.speakOnlyTo) && {mute: true}), }}); /**