From: Anthony Minessale Date: Fri, 6 Feb 2015 16:18:08 +0000 (-0600) Subject: FS-7513: make group change sticky when done from cli command X-Git-Tag: v1.6.2~614^2~433 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f00bd11731774638d903278fbeaffd6cb598b9d;p=thirdparty%2Ffreeswitch.git FS-7513: make group change sticky when done from cli command --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index d6d07aadde..c9633fdbc5 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -7627,6 +7627,9 @@ static switch_status_t conf_api_sub_vid_layout(conference_obj_t *conference, swi stream->write_function(stream, "Invalid group layout [%s]\n", argv[3]); return SWITCH_STATUS_SUCCESS; } + + stream->write_function(stream, "Change to layout group [%s]\n", argv[3]); + conference->video_layout_group = switch_core_strdup(conference->pool, argv[3]); } }