Quellcode durchsuchen

Disables RTP stats when running on FF.

j8
George Politis vor 10 Jahren
Ursprung
Commit
36f91f7f1e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      modules/statistics/RTPStatsCollector.js

+ 1
- 1
modules/statistics/RTPStatsCollector.js Datei anzeigen

@@ -260,7 +260,7 @@ StatsCollector.prototype.start = function ()
260 260
         );
261 261
     }
262 262
 
263
-    if(!config.disableStats) {
263
+    if(!config.disableStats && !navigator.mozGetUserMedia) {
264 264
         this.statsIntervalId = setInterval(
265 265
             function () {
266 266
                 // Interval updates

Laden…
Abbrechen
Speichern