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.
This commit is contained in:
Saúl Ibarra Corretgé 2022-09-26 09:33:34 +02:00 committed by Saúl Ibarra Corretgé
parent c43a319576
commit e7c5ae5936
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ export function getMeetingRegion(state: IReduxState) {
* @returns {boolean} * @returns {boolean}
*/ */
export function getMultipleVideoSendingSupportFeatureFlag(state: IReduxState) { export function getMultipleVideoSendingSupportFeatureFlag(state: IReduxState) {
return navigator.product !== 'ReactNative' && isUnifiedPlanEnabled(state); return isUnifiedPlanEnabled(state);
} }
/** /**