From d624f2584dfc4d0d6c5f0ecdedb128e994311b22 Mon Sep 17 00:00:00 2001 From: hristoterezov Date: Tue, 28 Jun 2016 11:21:37 -0500 Subject: [PATCH] Fixes issue with room name parameter = undefined --- modules/UI/authentication/AuthHandler.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/UI/authentication/AuthHandler.js b/modules/UI/authentication/AuthHandler.js index 5efc50414..fc321af3a 100644 --- a/modules/UI/authentication/AuthHandler.js +++ b/modules/UI/authentication/AuthHandler.js @@ -52,7 +52,8 @@ function doXmppAuth (room, lockPassword) { // (this will store sessionId in the localStorage) // 3. close new connection // 4. reallocate focus in current room - openConnection({id, password}).then(function (connection) { + openConnection({id, password, roomName: room.getName()}).then( + function (connection) { // open room let newRoom = connection.initJitsiConference( room.getName(), APP.conference._getConferenceOptions()