浏览代码

Merge pull request #711 from jitsi/room_name_undefined

Fixes issue with room name parameter = undefined
j8
Дамян Минков 9 年前
父节点
当前提交
1792b1ed85
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      modules/UI/authentication/AuthHandler.js

+ 2
- 1
modules/UI/authentication/AuthHandler.js 查看文件

52
         // (this will store sessionId in the localStorage)
52
         // (this will store sessionId in the localStorage)
53
         // 3. close new connection
53
         // 3. close new connection
54
         // 4. reallocate focus in current room
54
         // 4. reallocate focus in current room
55
-        openConnection({id, password}).then(function (connection) {
55
+        openConnection({id, password, roomName: room.getName()}).then(
56
+        function (connection) {
56
             // open room
57
             // open room
57
             let newRoom = connection.initJitsiConference(
58
             let newRoom = connection.initJitsiConference(
58
                 room.getName(), APP.conference._getConferenceOptions()
59
                 room.getName(), APP.conference._getConferenceOptions()

正在加载...
取消
保存