fix(rn) add default value when retrieving e2ee redux state
This commit is contained in:
parent
19e7f07b32
commit
554e2eeb11
|
@ -337,7 +337,7 @@ StateListenerRegistry.register(
|
||||||
function _e2eeUpdated({ getState, dispatch }, conference, participantId, newValue) {
|
function _e2eeUpdated({ getState, dispatch }, conference, participantId, newValue) {
|
||||||
const e2eeEnabled = newValue === 'true';
|
const e2eeEnabled = newValue === 'true';
|
||||||
|
|
||||||
const { maxMode } = getState()['features/e2ee'];
|
const { maxMode } = getState()['features/e2ee'] || {};
|
||||||
|
|
||||||
if (maxMode !== MAX_MODE.THRESHOLD_EXCEEDED || !e2eeEnabled) {
|
if (maxMode !== MAX_MODE.THRESHOLD_EXCEEDED || !e2eeEnabled) {
|
||||||
dispatch(toggleE2EE(e2eeEnabled));
|
dispatch(toggleE2EE(e2eeEnabled));
|
||||||
|
|
Loading…
Reference in New Issue