@@ -1765,6 +1765,9 @@ export default {
});
room.on(JitsiConferenceEvents.USER_LEFT, (id, user) => {
+ if (user.isHidden()) {
+ return;
+ }
APP.store.dispatch(participantLeft(id, user));
logger.log('USER %s LEFT', id, user);
APP.API.notifyUserLeft(id);