FS-6957 #resolve
This commit is contained in:
parent
7ca4ac566c
commit
8f3c157f12
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue