Browse Source

fix(environment): optimal browsers list

factor2
Gabriel Borlea 1 year ago
parent
commit
50b064907a
2 changed files with 5 additions and 4 deletions
  1. 2
    2
      interface_config.js
  2. 3
    2
      react/features/base/environment/environment.ts

+ 2
- 2
interface_config.js View File

@@ -107,8 +107,8 @@ var interfaceConfig = {
107 107
     // Names of browsers which should show a warning stating the current browser
108 108
     // has a suboptimal experience. Browsers which are not listed as optimal or
109 109
     // unsupported are considered suboptimal. Valid values are:
110
-    // chrome, chromium, edge, electron, firefox, nwjs, opera, safari
111
-    OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'firefox', 'nwjs', 'electron', 'safari' ],
110
+    // chrome, chromium, electron, firefox , safari, webkit
111
+    OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'firefox', 'electron', 'safari', 'webkit' ],
112 112
 
113 113
     POLICY_LOGO: null,
114 114
     PROVIDER_NAME: 'Jitsi',

+ 3
- 2
react/features/base/environment/environment.ts View File

@@ -7,10 +7,11 @@ const { browser } = JitsiMeetJS.util;
7 7
 
8 8
 const DEFAULT_OPTIMAL_BROWSERS = [
9 9
     'chrome',
10
+    'chromium',
10 11
     'electron',
11 12
     'firefox',
12
-    'nwjs',
13
-    'safari'
13
+    'safari',
14
+    'webkit'
14 15
 ];
15 16
 
16 17
 const DEFAULT_UNSUPPORTED_BROWSERS: string[] = [];

Loading…
Cancel
Save