diff --git a/conference.js b/conference.js index 0fd7e8d31a..44e9ddefc9 100644 --- a/conference.js +++ b/conference.js @@ -624,10 +624,16 @@ export default { _setupListeners () { // add local streams when joined to the conference room.on(ConferenceEvents.CONFERENCE_JOINED, () => { - APP.UI.updateAuthInfo(room.isAuthEnabled(), room.getAuthLogin()); APP.UI.mucJoined(); }); + room.on( + ConferenceEvents.AUTH_STATUS_CHANGED, + function (authEnabled, authLogin) { + APP.UI.updateAuthInfo(authEnabled, authLogin); + } + ); + room.on(ConferenceEvents.USER_JOINED, (id, user) => { console.log('USER %s connnected', id, user);