Threads notification count in main timeline including un participated threads

This commit is contained in:
Gil Eluard
2022-11-04 17:21:27 +01:00
parent 41bff6e310
commit f7737d43e1
3 changed files with 22 additions and 25 deletions
@@ -35,7 +35,7 @@ enum ThreadNotificationStatus {
init(withThread thread: MXThreadProtocol) {
if thread.highlightCount > 0 {
self = .highlighted
} else if thread.isParticipated && thread.notificationCount > 0 {
} else if thread.notificationCount > 0 {
self = .notified
} else {
self = .none