diff --git a/js/background.js b/js/background.js index a2e83d285..090908a62 100644 --- a/js/background.js +++ b/js/background.js @@ -1038,7 +1038,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;