Browse Source

Enable opus/red for the conference even when the browser doesn't support it. (#1309)

* Enable opus/red for the conference even when the browser doesn't support it.

* squash: Remove unused import
dev1
bgrozev 5 years ago
parent
commit
65df5b1da6
No account linked to committer's email address
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      modules/xmpp/moderator.js

+ 1
- 2
modules/xmpp/moderator.js View File

@@ -3,7 +3,6 @@
3 3
 import { getLogger } from 'jitsi-meet-logger';
4 4
 import { $iq, Strophe } from 'strophe.js';
5 5
 
6
-import browser from '../browser';
7 6
 import Settings from '../settings/Settings';
8 7
 
9 8
 const AuthenticationEvents
@@ -205,7 +204,7 @@ Moderator.prototype.createConferenceIq = function() {
205 204
                     value: Boolean(config.enableRemb)
206 205
                 }).up();
207 206
     }
208
-    if (config.enableOpusRed === true && browser.supportsAudioRed()) {
207
+    if (config.enableOpusRed === true) {
209 208
         elem.c(
210 209
                 'property', {
211 210
                     name: 'enableOpusRed',

Loading…
Cancel
Save