From 0421052b1411b171480f4b6174cb7487b728d5e3 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Tue, 31 May 2016 12:36:57 -0400 Subject: [PATCH] FS-9212: [mod_conference] fix conference recording api when using default canvas number --- src/mod/applications/mod_conference/conference_api.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mod/applications/mod_conference/conference_api.c b/src/mod/applications/mod_conference/conference_api.c index 4cac47c661..11a2efadcb 100644 --- a/src/mod/applications/mod_conference/conference_api.c +++ b/src/mod/applications/mod_conference/conference_api.c @@ -2635,6 +2635,7 @@ switch_status_t conference_api_sub_recording(conference_obj_t *conference, switc if (strcasecmp(argv[2], "start") == 0) { argv[1] = argv[2]; argv[2] = argv[3]; + argv[3] = argv[4]; return conference_api_sub_record(conference,stream,4,argv); } else if (strcasecmp(argv[2], "stop") == 0) { argv[1] = argv[2];