瀏覽代碼

fix(last-n): Do not let Jicofo initialize last-n for the whole conference.

The plan is to move the lastNLimits logic to bridge. The clients will be able to override(lower) the bridge limits through the bridge channel only. Also, this lets us configure last-n per receiver and not set the last-n value for the whole conference the way Jicofo sets it currently.
dev1
Jaya Allamsetty 4 年之前
父節點
當前提交
21e517807b
共有 1 個檔案被更改,包括 0 行新增7 行删除
  1. 0
    7
      modules/xmpp/moderator.js

+ 0
- 7
modules/xmpp/moderator.js 查看文件

@@ -177,13 +177,6 @@ Moderator.prototype.createConferenceIq = function() {
177 177
                 value: this.options.connection.hosts.call_control
178 178
             }).up();
179 179
     }
180
-    if (config.channelLastN !== undefined) {
181
-        elem.c(
182
-            'property', {
183
-                name: 'channelLastN',
184
-                value: config.channelLastN
185
-            }).up();
186
-    }
187 180
     elem.c(
188 181
         'property', {
189 182
             name: 'disableRtx',

Loading…
取消
儲存