浏览代码

Merge pull request #64 from bgrozev/disable-rtx

Disables rtx.
dev1
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', {

正在加载...
取消
保存