Merge pull request #711 from jitsi/room_name_undefined

Fixes issue with room name parameter = undefined
This commit is contained in:
Дамян Минков 2016-06-28 11:52:45 -05:00 committed by GitHub
commit 1792b1ed85
1 changed files with 2 additions and 1 deletions

View File

@ -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()