Skip to content

Commit

Permalink
fix(environment): optimal browsers list
Browse files Browse the repository at this point in the history
  • Loading branch information
gabiborlea committed Oct 5, 2023
1 parent 6c41ddb commit 4e7505d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions interface_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ var interfaceConfig = {
// Names of browsers which should show a warning stating the current browser
// has a suboptimal experience. Browsers which are not listed as optimal or
// unsupported are considered suboptimal. Valid values are:
// chrome, chromium, edge, electron, firefox, nwjs, opera, safari
OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'firefox', 'nwjs', 'electron', 'safari' ],
// chrome, chromium, electron, firefox , safari, webkit
OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'firefox', 'electron', 'safari', 'webkit' ],

POLICY_LOGO: null,
PROVIDER_NAME: 'Jitsi',
Expand Down
5 changes: 3 additions & 2 deletions react/features/base/environment/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ const { browser } = JitsiMeetJS.util;

const DEFAULT_OPTIMAL_BROWSERS = [
'chrome',
'chromium',
'electron',
'firefox',
'nwjs',
'safari'
'safari',
'webkit'
];

const DEFAULT_UNSUPPORTED_BROWSERS: string[] = [];
Expand Down

0 comments on commit 4e7505d

Please sign in to comment.