fix: support _lccMuteStatus for conference (#853)

This commit is contained in:
Anton Voylenko
2024-08-13 16:57:26 +03:00
committed by GitHub
parent bae96a6752
commit c594797cb0

View File

@@ -544,6 +544,13 @@ class Conference extends Task {
} while (!this.killed && this.conf_hold_status === 'hold'); } while (!this.killed && this.conf_hold_status === 'hold');
} }
/**
* mute or unmute side of the call
*/
mute(callSid, doMute) {
this.doConferenceMute(this.callSession, {conf_mute_status: doMute});
}
/** /**
* Add ourselves to the waitlist of sessions to be notified once * Add ourselves to the waitlist of sessions to be notified once
* the conference starts * the conference starts