don't show 'user has left' notification for hidden users

pull/2446/merge jitsi-meet_2809
brian baldino 7 years ago committed by yanas
parent 74a92f83c7
commit 9fea5e89b3
  1. 3
      conference.js

@ -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);

Loading…
Cancel
Save