fix: Add safari to optimal browser lists

This commit is contained in:
Jaya Allamsetty 2020-04-30 17:27:42 -04:00 committed by Jaya Allamsetty
parent eea8fef044
commit 9ad87f3706
2 changed files with 3 additions and 2 deletions

View File

@ -176,7 +176,7 @@ var interfaceConfig = {
// 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' ],
OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'firefox', 'nwjs', 'electron', 'safari' ],
// Browsers, in addition to those which do not fully support WebRTC, that
// are not supported and should show the unsupported browser page.

View File

@ -9,7 +9,8 @@ const DEFAULT_OPTIMAL_BROWSERS = [
'chrome',
'electron',
'firefox',
'nwjs'
'nwjs',
'safari'
];
const DEFAULT_UNSUPPORTED_BROWSERS = [];