From: Michael Jerris Date: Tue, 31 May 2016 16:36:57 +0000 (-0400) Subject: FS-9212: [mod_conference] fix conference recording api when using default canvas... X-Git-Tag: v1.6.9~2^2~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0421052b1411b171480f4b6174cb7487b728d5e3;p=thirdparty%2Ffreeswitch.git FS-9212: [mod_conference] fix conference recording api when using default canvas number --- 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];