Sfoglia il codice sorgente

Revert "feat(browser-support): Add safari to list of optimal browsers"

This reverts commit 4824c8714a.
master
Jaya Allamsetty 5 anni fa
parent
commit
e0563a743f
2 ha cambiato i file con 2 aggiunte e 3 eliminazioni
  1. 1
    1
      interface_config.js
  2. 1
    2
      react/features/base/environment/environment.js

+ 1
- 1
interface_config.js Vedi File

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

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

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

Loading…
Annulla
Salva