From 8f00bd11731774638d903278fbeaffd6cb598b9d Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 6 Feb 2015 10:18:08 -0600 Subject: [PATCH] FS-7513: make group change sticky when done from cli command --- src/mod/applications/mod_conference/mod_conference.c | 3 +++ 1 file changed, 3 insertions(+) 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]); } }