show closed group in channels list

pull/1099/head
Audric Ackermann 5 years ago
parent caace04c32
commit 2a9a2f7fb9
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -87,9 +87,7 @@ export class LeftPaneChannelSection extends React.Component<Props, State> {
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'
);
}

Loading…
Cancel
Save