Browse Source

Allows RTX to be disable for a conference.

master
Boris Grozev 9 years ago
parent
commit
4d93c05452
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      modules/xmpp/moderator.js

+ 7
- 0
modules/xmpp/moderator.js View File

@@ -171,6 +171,13 @@ Moderator.prototype.createConferenceIq =  function () {
171 171
                 value: value
172 172
             }).up();
173 173
     }
174
+    if (options.disableRtx !== undefined) {
175
+        elem.c(
176
+            'property', {
177
+                name: 'disableRtx',
178
+                value: options.disableRtx
179
+            }).up();
180
+    }
174 181
     if (options.openSctp !== undefined) {
175 182
         elem.c(
176 183
             'property', {

Loading…
Cancel
Save