Browse Source

fix(firefox): Disable Simulcast on Firefox

dev1
Jaya Allamsetty 5 years ago
parent
commit
0d058e5063
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/RTC/TraceablePeerConnection.js

+ 1
- 1
modules/RTC/TraceablePeerConnection.js View File

@@ -434,7 +434,7 @@ TraceablePeerConnection.prototype._getDesiredMediaDirection = function(
434 434
  * <tt>false</tt> if it's turned off.
435 435
  */
436 436
 TraceablePeerConnection.prototype.isSimulcastOn = function() {
437
-    return !this.options.disableSimulcast;
437
+    return !browser.isFirefox() && !this.options.disableSimulcast;
438 438
 };
439 439
 
440 440
 /**

Loading…
Cancel
Save