From 2a9a2f7fb9a9ad0d99104e6a9a45c4fcb03539e9 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 24 Apr 2020 14:03:21 +1000 Subject: [PATCH] show closed group in channels list --- ts/components/session/LeftPaneChannelSection.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ts/components/session/LeftPaneChannelSection.tsx b/ts/components/session/LeftPaneChannelSection.tsx index fd543ebef..2eaf2c9b6 100644 --- a/ts/components/session/LeftPaneChannelSection.tsx +++ b/ts/components/session/LeftPaneChannelSection.tsx @@ -87,9 +87,7 @@ export class LeftPaneChannelSection extends React.Component { conversationList = conversationList.filter( // a channel is either a public group or a rss group conversation => - conversation.type === 'group' && - (conversation.isPublic || - (conversation.lastMessage && conversation.lastMessage.isRss)) + conversation && conversation.type === 'group' ); }