|
@@ -62,11 +62,11 @@ export function getMeetingRegion(state: IReduxState) {
|
62
|
62
|
/**
|
63
|
63
|
* Selector for determining if sending multiple stream support is enabled.
|
64
|
64
|
*
|
65
|
|
- * @param {Object} state - The global state.
|
|
65
|
+ * @param {Object} _state - The global state.
|
66
|
66
|
* @returns {boolean}
|
67
|
67
|
*/
|
68
|
|
-export function getMultipleVideoSendingSupportFeatureFlag(state: IReduxState) {
|
69
|
|
- return isUnifiedPlanEnabled(state);
|
|
68
|
+export function getMultipleVideoSendingSupportFeatureFlag(_state: IReduxState) {
|
|
69
|
+ return browser.supportsUnifiedPlan();
|
70
|
70
|
}
|
71
|
71
|
|
72
|
72
|
/**
|
|
@@ -205,19 +205,6 @@ export function isDisplayNameVisible(state: IReduxState): boolean {
|
205
|
205
|
return !state['features/base/config'].hideDisplayName;
|
206
|
206
|
}
|
207
|
207
|
|
208
|
|
-/**
|
209
|
|
- * Selector for determining if Unified plan support is enabled.
|
210
|
|
- *
|
211
|
|
- * @param {Object} state - The state of the app.
|
212
|
|
- * @returns {boolean}
|
213
|
|
- */
|
214
|
|
-export function isUnifiedPlanEnabled(state: IReduxState): boolean {
|
215
|
|
- const { enableUnifiedOnChrome = true } = state['features/base/config'];
|
216
|
|
-
|
217
|
|
- return browser.supportsUnifiedPlan()
|
218
|
|
- && (!browser.isChromiumBased() || (browser.isChromiumBased() && enableUnifiedOnChrome));
|
219
|
|
-}
|
220
|
|
-
|
221
|
208
|
/**
|
222
|
209
|
* Restores a Jitsi Meet config.js from {@code localStorage} if it was
|
223
|
210
|
* previously downloaded from a specific {@code baseURL} and stored with
|