瀏覽代碼

feat: Adds an option to disable broadcasting stats.

master
damencho 6 月之前
父節點
當前提交
b1a2d42a7a
共有 1 個檔案被更改,包括 5 行新增0 行删除
  1. 5
    0
      modules/connectivity/ConnectionQuality.js

+ 5
- 0
modules/connectivity/ConnectionQuality.js 查看文件

@@ -361,6 +361,11 @@ export default class ConnectionQuality {
361 361
      * conference.
362 362
      */
363 363
     _broadcastLocalStats() {
364
+        // broadcasting local stats is disabled
365
+        if (this._options.config.disableLocalStatsBroadcast) {
366
+            return;
367
+        }
368
+
364 369
         // Send only the data that remote participants care about.
365 370
         const data = {
366 371
             bitrate: this._localStats.bitrate,

Loading…
取消
儲存