1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-04 17:51:03 +00:00

FS-6957 fix regression

This commit is contained in:
Brian West 2014-11-17 10:36:03 -06:00
parent 250234da76
commit 7c0da5cc40

@ -10331,6 +10331,8 @@ static conference_obj_t *conference_new(char *name, conf_xml_cfg_t cfg, switch_c
conference->perpetual_sound = switch_core_strdup(conference->pool, perpetual_sound); conference->perpetual_sound = switch_core_strdup(conference->pool, perpetual_sound);
} }
conference->mflags = MFLAG_CAN_SPEAK | MFLAG_CAN_HEAR;
if (!zstr(moh_sound) && switch_is_moh(moh_sound)) { if (!zstr(moh_sound) && switch_is_moh(moh_sound)) {
conference->moh_sound = switch_core_strdup(conference->pool, moh_sound); conference->moh_sound = switch_core_strdup(conference->pool, moh_sound);
} }