Sfoglia il codice sorgente

fix(rn, conference): dispatch auth status changed in base/conference

master
Werner Fleischer 3 anni fa
parent
commit
cce4c1ba9d
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  1. 3
    0
      react/features/base/conference/actions.js

+ 3
- 0
react/features/base/conference/actions.js Vedi File

@@ -95,6 +95,9 @@ function _addConferenceListeners(conference, dispatch, state) {
95 95
 
96 96
     // Dispatches into features/base/conference follow:
97 97
 
98
+    conference.on(
99
+        JitsiConferenceEvents.AUTH_STATUS_CHANGED,
100
+        (authEnabled, authLogin) => dispatch(authStatusChanged(authEnabled, authLogin)));
98 101
     conference.on(
99 102
         JitsiConferenceEvents.CONFERENCE_FAILED,
100 103
         (...args) => dispatch(conferenceFailed(conference, ...args)));

Loading…
Annulla
Salva