(prejoin): fix mobile
This commit is contained in:
parent
74e0e10928
commit
0aa54d8650
|
@ -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…
Reference in New Issue