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' ); }