Make closed groups show up in contacts left panel

pull/917/head
Audric Ackermann 5 years ago
parent 7eab7fbcf4
commit f0760b22ea
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -993,7 +993,9 @@
let friendList = contacts; let friendList = contacts;
if (friendList !== undefined) { if (friendList !== undefined) {
friendList = friendList.filter( friendList = friendList.filter(
friend => friend.type === 'direct' && !friend.isMe friend =>
(friend.type === 'direct' && !friend.isMe) ||
(friend.type === 'group' && !friend.isPublic && !friend.isRss)
); );
} }
return friendList; return friendList;

Loading…
Cancel
Save