Explorar el Código

feat(e2ee): broadcast e2ee disabled

master
titus.moldovan hace 4 años
padre
commit
093d8f830a
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  1. 1
    3
      react/features/base/participants/middleware.js

+ 1
- 3
react/features/base/participants/middleware.js Ver fichero

@@ -277,9 +277,7 @@ StateListenerRegistry.register(
277 277
 function _e2eeUpdated({ dispatch }, conference, participantId, newValue) {
278 278
     const e2eeEnabled = newValue === 'true';
279 279
 
280
-    if (e2eeEnabled) {
281
-        dispatch(toggleE2EE(e2eeEnabled));
282
-    }
280
+    dispatch(toggleE2EE(e2eeEnabled));
283 281
 
284 282
     dispatch(participantUpdated({
285 283
         conference,

Loading…
Cancelar
Guardar