From 840ea1346893d434ea847703d2b34166609a21db Mon Sep 17 00:00:00 2001 From: Sean Heffernan Date: Thu, 17 Dec 2015 07:03:39 -0500 Subject: [PATCH] Fix xmpp.creatRoom params --- JitsiConference.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)