diff --git a/JitsiConference.js b/JitsiConference.js index 88df46f63..8d62f36fc 100644 --- a/JitsiConference.js +++ b/JitsiConference.js @@ -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)