Fixes issue with room name parameter = undefined

pull/711/head
hristoterezov 9 years ago
parent f39f8d14fd
commit d624f2584d
  1. 3
      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()

Loading…
Cancel
Save