ソースを参照

Fixes issue with muc join

master
hristoterezov 9年前
コミット
6d51afe200
1個のファイルの変更3行の追加2行の削除
  1. 3
    2
      modules/xmpp/ChatRoom.js

+ 3
- 2
modules/xmpp/ChatRoom.js ファイルの表示

@@ -117,8 +117,9 @@ ChatRoom.prototype.join = function (password) {
117 117
     if(password)
118 118
         this.password = password;
119 119
     var self = this;
120
-    this.moderator.allocateConferenceFocus(function () {});
121
-    self.sendPresence(true);
120
+    this.moderator.allocateConferenceFocus(function () {
121
+        self.sendPresence(true);
122
+    });
122 123
 };
123 124
 
124 125
 ChatRoom.prototype.sendPresence = function (fromJoin) {

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