ソースを参照

Fixes issue with room name parameter = undefined

j8
hristoterezov 9年前
コミット
d624f2584d
1個のファイルの変更2行の追加1行の削除
  1. 2
    1
      modules/UI/authentication/AuthHandler.js

+ 2
- 1
modules/UI/authentication/AuthHandler.js ファイルの表示

@@ -52,7 +52,8 @@ function doXmppAuth (room, lockPassword) {
52 52
         // (this will store sessionId in the localStorage)
53 53
         // 3. close new connection
54 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 57
             // open room
57 58
             let newRoom = connection.initJitsiConference(
58 59
                 room.getName(), APP.conference._getConferenceOptions()

読み込み中…
キャンセル
保存