Fix Jump to Channel DMs not showing (#2021)

This commit is contained in:
Elias Nahum 2018-08-22 21:06:18 -03:00 committed by GitHub
parent 8e46b0d810
commit cfbdb23035
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,7 +75,7 @@ function makeMapStateToProps() {
theme: getTheme(state),
type: channel.type,
unreadMsgs,
isArchived: channel.delete_at !== 0,
isArchived: channel.delete_at > 0,
};
};
}