From f0760b22eaf6c3c8dacc9b96eee2bf86ff30cf31 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 24 Feb 2020 16:21:10 +1100 Subject: [PATCH] Make closed groups show up in contacts left panel --- js/background.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;