(prejoin): fix mobile

pull/7098/head jitsi-meet_4752
Vlad Piersec 5 years ago committed by Saúl Ibarra Corretgé
parent 74e0e10928
commit 0aa54d8650
  1. 6
      react/features/base/devices/functions.js
  2. 2
      react/features/device-selection/middleware.js

@ -234,7 +234,7 @@ export function getVideoDeviceIds(state: Object) {
}
/**
* Returns true if there are devices of a specific type.
* Returns true if there are devices of a specific type or on native platform.
*
* @param {Object} state - The state of the application.
* @param {string} type - The type of device: VideoOutput | audioOutput | audioInput.
@ -242,6 +242,10 @@ export function getVideoDeviceIds(state: Object) {
* @returns {boolean}
*/
export function hasAvailableDevices(state: Object, type: string) {
if (state['features/base/devices'] === undefined) {
return true;
}
return state['features/base/devices'].availableDevices[type].length > 0;
}

@ -18,7 +18,7 @@ MiddlewareRegistry.register(store => next => action => {
if (action.type === UPDATE_DEVICE_LIST) {
const state = store.getState();
const { popupDialogData } = state['features/device-selection'];
const { availableDevices } = state['features/base/devices'];
const { availableDevices } = state['features/base/devices'] || {};
if (popupDialogData) {
popupDialogData.transport.sendEvent({

Loading…
Cancel
Save