浏览代码

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
                 value: value
171
                 value: value
172
             }).up();
172
             }).up();
173
     }
173
     }
174
-    if (options.disableRtx !== undefined) {
174
+    // TODO: re-enable once rtx is stable
175
+    //if (options.disableRtx !== undefined) {
175
         elem.c(
176
         elem.c(
176
             'property', {
177
             'property', {
177
                 name: 'disableRtx',
178
                 name: 'disableRtx',
178
-                value: options.disableRtx
179
+                //value: options.disableRtx
180
+                value: true
179
             }).up();
181
             }).up();
180
-    }
182
+    //}
181
     if (options.openSctp !== undefined) {
183
     if (options.openSctp !== undefined) {
182
         elem.c(
184
         elem.c(
183
             'property', {
185
             'property', {

正在加载...
取消
保存