Fix xmpp.creatRoom params
This commit is contained in:
parent
c1867a64e0
commit
840ea13468
|
@ -31,7 +31,8 @@ function JitsiConference(options) {
|
|||
this.connection = this.options.connection;
|
||||
this.xmpp = this.connection.xmpp;
|
||||
this.eventEmitter = new EventEmitter();
|
||||
this.room = this.xmpp.createRoom(this.options.name, null, null, this.options.config);
|
||||
this.room = this.xmpp.createRoom(this.options.name, this.options.config,
|
||||
this.options.config.useNicks, this.options.config.nick);
|
||||
this.room.updateDeviceAvailability(RTC.getDeviceAvailability());
|
||||
this.rtc = new RTC(this.room, options);
|
||||
if(!RTC.options.disableAudioLevels)
|
||||
|
|
Loading…
Reference in New Issue