mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-23 12:42:02 +00:00
FS-6957 #resolve
This commit is contained in:
@@ -9278,8 +9278,10 @@ SWITCH_STANDARD_APP(conference_function)
|
||||
if (flags_str) {
|
||||
set_mflags(flags_str,&mflags);
|
||||
|
||||
if (!((mflags & MFLAG_CAN_SPEAK) && (mflags & MFLAG_INDICATE_MUTE))) {
|
||||
switch_core_media_hard_mute(session, SWITCH_TRUE);
|
||||
if (!(mflags & MFLAG_CAN_SPEAK)) {
|
||||
if (!(mflags & MFLAG_INDICATE_MUTE)) {
|
||||
switch_core_media_hard_mute(session, SWITCH_TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
if (mflags & MFLAG_JOIN_ONLY) {
|
||||
@@ -9579,8 +9581,10 @@ SWITCH_STANDARD_APP(conference_function)
|
||||
set_mflags(flags_str, &mflags);
|
||||
mflags |= MFLAG_RUNNING;
|
||||
|
||||
if (!((mflags & MFLAG_CAN_SPEAK) && (mflags & MFLAG_INDICATE_MUTE))) {
|
||||
switch_core_media_hard_mute(member.session, SWITCH_TRUE);
|
||||
if (!(mflags & MFLAG_CAN_SPEAK)) {
|
||||
if (!(mflags & MFLAG_INDICATE_MUTE)) {
|
||||
switch_core_media_hard_mute(member.session, SWITCH_TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
if (mpin_matched) {
|
||||
|
||||
Reference in New Issue
Block a user