Browse Source

fix: Add safari to optimal browser lists

master
Jaya Allamsetty 5 years ago
parent
commit
9ad87f3706
2 changed files with 3 additions and 2 deletions
  1. 1
    1
      interface_config.js
  2. 2
    1
      react/features/base/environment/environment.js

+ 1
- 1
interface_config.js View File

176
     // has a suboptimal experience. Browsers which are not listed as optimal or
176
     // has a suboptimal experience. Browsers which are not listed as optimal or
177
     // unsupported are considered suboptimal. Valid values are:
177
     // unsupported are considered suboptimal. Valid values are:
178
     // chrome, chromium, edge, electron, firefox, nwjs, opera, safari
178
     // chrome, chromium, edge, electron, firefox, nwjs, opera, safari
179
-    OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'firefox', 'nwjs', 'electron' ],
179
+    OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'firefox', 'nwjs', 'electron', 'safari' ],
180
 
180
 
181
     // Browsers, in addition to those which do not fully support WebRTC, that
181
     // Browsers, in addition to those which do not fully support WebRTC, that
182
     // are not supported and should show the unsupported browser page.
182
     // are not supported and should show the unsupported browser page.

+ 2
- 1
react/features/base/environment/environment.js View File

9
     'chrome',
9
     'chrome',
10
     'electron',
10
     'electron',
11
     'firefox',
11
     'firefox',
12
-    'nwjs'
12
+    'nwjs',
13
+    'safari'
13
 ];
14
 ];
14
 
15
 
15
 const DEFAULT_UNSUPPORTED_BROWSERS = [];
16
 const DEFAULT_UNSUPPORTED_BROWSERS = [];

Loading…
Cancel
Save