From 7c0da5cc404864a495fb5e2da872e2709621f4f1 Mon Sep 17 00:00:00 2001 From: Brian West Date: Mon, 17 Nov 2014 10:36:03 -0600 Subject: [PATCH] FS-6957 fix regression --- src/mod/applications/mod_conference/mod_conference.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index c3885dbe79..1dfbe311d3 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -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->mflags = MFLAG_CAN_SPEAK | MFLAG_CAN_HEAR; + if (!zstr(moh_sound) && switch_is_moh(moh_sound)) { conference->moh_sound = switch_core_strdup(conference->pool, moh_sound); }