This commit is contained in:
Sean Heffernan 2015-12-22 01:06:50 +00:00
commit dbbd7e525b
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)