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

This commit is contained in:
Werner Fleischer 2022-01-20 10:16:22 +01:00 committed by Saúl Ibarra Corretgé
parent c29bfc8b8a
commit cce4c1ba9d
1 changed files with 3 additions and 0 deletions

View File

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