Fix xmpp.creatRoom params

This commit is contained in:
Sean Heffernan 2015-12-17 07:03:39 -05:00
parent c1867a64e0
commit 840ea13468
1 changed files with 2 additions and 1 deletions

View File

@ -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)