hide channel unread when opening channel but keep thread unread

This commit is contained in:
David Battersby 2024-11-06 16:13:20 +04:00
parent 8b17f2c886
commit f9df16b675
No known key found for this signature in database
GPG Key ID: B340A4CBDA2C74DC

View File

@ -11,7 +11,7 @@ export default class ChatChannelUnreadIndicator extends Component {
get showUnreadIndicator() {
return (
this.args.channel.tracking.unreadCount > 0 ||
this.args.channel.unreadThreadsCount > 0
this.args.channel.unreadThreadsCountSinceLastViewed > 0
);
}