Merge pull request #917 from Bilb/closed-group-contact-panel

Make closed groups show up in contacts left panel
pull/945/head
Audric Ackermann 5 years ago committed by GitHub
commit 488c0b4e08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;

Loading…
Cancel
Save