diff --git a/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-list-item/component.jsx b/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-list-item/component.jsx index 5cfb8695b6..d3e135fb6b 100644 --- a/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-list-item/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-list-item/component.jsx @@ -636,7 +636,9 @@ class UserListItem extends PureComponent { size: '1.3rem', }; - let userAvatarFiltered = user.avatar; + const userAvatarFiltered = (user.raiseHand === true || user.away === true || user.reaction !== 'none') + ? '' + : user.avatar; const emojiIcons = [ { @@ -661,7 +663,6 @@ class UserListItem extends PureComponent { } if (user.emoji !== 'none' && user.emoji !== 'notAway') { return ; } if (user.reaction !== 'none') { - userAvatarFiltered = ''; return user.reaction; } if (user.name) { return user.name.toLowerCase().slice(0, 2);