diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index f267780d38..d8bcf488fb 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -5310,6 +5310,11 @@ static void conference_xlist(conference_obj_t *conference, switch_xml_t x_confer switch_xml_set_attr_d(x_conference, "enter_sound", "true"); } + if (conference->max_members > 0) { + switch_snprintf(i, sizeof(i), "%d", conference->max_members); + switch_xml_set_attr_d(x_conference, "max_members", ival); + } + if (conference->record_count > 0) { switch_xml_set_attr_d(x_conference, "recording", "true"); }