From 9ad87f370632233d4adc2cd245e7310c13fb4cb6 Mon Sep 17 00:00:00 2001 From: Jaya Allamsetty Date: Thu, 30 Apr 2020 17:27:42 -0400 Subject: [PATCH] fix: Add safari to optimal browser lists --- interface_config.js | 2 +- react/features/base/environment/environment.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/interface_config.js b/interface_config.js index 3671d528e6..7db8ba2719 100644 --- a/interface_config.js +++ b/interface_config.js @@ -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. diff --git a/react/features/base/environment/environment.js b/react/features/base/environment/environment.js index 7583b8c34e..dc790e6f80 100644 --- a/react/features/base/environment/environment.js +++ b/react/features/base/environment/environment.js @@ -9,7 +9,8 @@ const DEFAULT_OPTIMAL_BROWSERS = [ 'chrome', 'electron', 'firefox', - 'nwjs' + 'nwjs', + 'safari' ]; const DEFAULT_UNSUPPORTED_BROWSERS = [];