Browse Source

Send 'useRoomAsSharedDocumentName' option to Jicofo

master
paweldomas 9 years ago
parent
commit
43e46336d0
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      modules/xmpp/moderator.js

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

@@ -238,6 +238,14 @@ Moderator.prototype.createConferenceIq =  function () {
238 238
             name: 'simulcastMode',
239 239
             value: 'rewriting'
240 240
         }).up();
241
+
242
+    if (this.options.conference.useRoomAsSharedDocumentName !== undefined) {
243
+        elem.c(
244
+            'property', {
245
+                name: 'useRoomAsSharedDocumentName',
246
+                value: this.options.conference.useRoomAsSharedDocumentName
247
+            }).up();
248
+    }
241 249
     elem.up();
242 250
     return elem;
243 251
 };

Loading…
Cancel
Save