ソースを参照

Merge pull request #64 from bgrozev/disable-rtx

Disables rtx.
master
George Politis 9年前
コミット
967ee8980c
1個のファイルの変更5行の追加3行の削除
  1. 5
    3
      modules/xmpp/moderator.js

+ 5
- 3
modules/xmpp/moderator.js ファイルの表示

@@ -171,13 +171,15 @@ Moderator.prototype.createConferenceIq =  function () {
171 171
                 value: value
172 172
             }).up();
173 173
     }
174
-    if (options.disableRtx !== undefined) {
174
+    // TODO: re-enable once rtx is stable
175
+    //if (options.disableRtx !== undefined) {
175 176
         elem.c(
176 177
             'property', {
177 178
                 name: 'disableRtx',
178
-                value: options.disableRtx
179
+                //value: options.disableRtx
180
+                value: true
179 181
             }).up();
180
-    }
182
+    //}
181 183
     if (options.openSctp !== undefined) {
182 184
         elem.c(
183 185
             'property', {

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