Skip to content

Commit

Permalink
fix(TPC) Do not call setCodecPreferences on Firefox.
Browse files Browse the repository at this point in the history
Calling this API on Firefox is causing freezes when the local endpoint is the answerer. https://bugzilla.mozilla.org/show_bug.cgi?id=1917800
  • Loading branch information
jallamsetty1 committed Oct 4, 2024
1 parent dbb76bf commit 7dfad4f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modules/browser/BrowserCapabilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,11 @@ export default class BrowserCapabilities extends BrowserDetection {

// this is not working on Safari because of the following bug
// https://bugs.webkit.org/show_bug.cgi?id=215567
&& !this.isWebKitBased();
&& !this.isWebKitBased()

// Calling this API on Firefox is causing freezes when the local endpoint is the answerer.
// https://bugzilla.mozilla.org/show_bug.cgi?id=1917800
&& !this.isFirefox();
}

/**
Expand Down

0 comments on commit 7dfad4f

Please sign in to comment.