- remove extra parameters when connecting to bbb-apps
This commit is contained in:
parent
a5c193bc7a
commit
5d3bb5fb70
@ -128,12 +128,12 @@ public class BigBlueButtonApplication extends MultiThreadedApplicationAdapter {
|
|||||||
String role = ((String) params[1]).toString();
|
String role = ((String) params[1]).toString();
|
||||||
String room = ((String)params[2]).toString();
|
String room = ((String)params[2]).toString();
|
||||||
|
|
||||||
String voiceBridge = ((String) params[4]).toString();
|
String voiceBridge = ((String) params[3]).toString();
|
||||||
|
|
||||||
boolean record = (Boolean)params[5];
|
boolean record = (Boolean)params[4];
|
||||||
|
|
||||||
String externalUserID = ((String) params[6]).toString();
|
String externalUserID = ((String) params[5]).toString();
|
||||||
String internalUserID = ((String) params[7]).toString();
|
String internalUserID = ((String) params[6]).toString();
|
||||||
|
|
||||||
if (record == true) {
|
if (record == true) {
|
||||||
recorderApplication.createRecordSession(room);
|
recorderApplication.createRecordSession(room);
|
||||||
|
Loading…
Reference in New Issue
Block a user