From e7c5ae5936ac14a740de76250de3d93c76fcbf3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 26 Sep 2022 09:33:34 +0200 Subject: [PATCH] fix(rn,config) don't disable multi-stream sending on RN We don't plan to send both (camera and screen) streams at once, but we do plan to align with web and have both streams at the same time, with the camera being muted when we start screen sharing. --- react/features/base/config/functions.any.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/base/config/functions.any.ts b/react/features/base/config/functions.any.ts index 8ee510c12..29eda918e 100644 --- a/react/features/base/config/functions.any.ts +++ b/react/features/base/config/functions.any.ts @@ -60,7 +60,7 @@ export function getMeetingRegion(state: IReduxState) { * @returns {boolean} */ export function getMultipleVideoSendingSupportFeatureFlag(state: IReduxState) { - return navigator.product !== 'ReactNative' && isUnifiedPlanEnabled(state); + return isUnifiedPlanEnabled(state); } /**