mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-24 05:21:58 +00:00
fix(category): fix muted category and received messages (#14082)
Fixes #14079
This commit is contained in:
parent
830cadf06a
commit
19420d355b
@ -290,7 +290,7 @@ QtObject:
|
||||
for chat in self.channelGroups[communityId].chats:
|
||||
if chat.categoryId != categoryId:
|
||||
continue
|
||||
if chat.unviewedMessagesCount > 0 or chat.unviewedMentionsCount > 0:
|
||||
if (not chat.muted and chat.unviewedMessagesCount > 0) or chat.unviewedMentionsCount > 0:
|
||||
return true
|
||||
return false
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user