diff --git a/js/background.js b/js/background.js index 5ce84a8fc..e1edcb968 100644 --- a/js/background.js +++ b/js/background.js @@ -993,7 +993,9 @@ let friendList = contacts; if (friendList !== undefined) { friendList = friendList.filter( - friend => friend.type === 'direct' && !friend.isMe + friend => + (friend.type === 'direct' && !friend.isMe) || + (friend.type === 'group' && !friend.isPublic && !friend.isRss) ); } return friendList;