Fixes #14079
This commit is contained in:
parent
398a92b12e
commit
2b219627a5
|
@ -290,7 +290,7 @@ QtObject:
|
||||||
for chat in self.channelGroups[communityId].chats:
|
for chat in self.channelGroups[communityId].chats:
|
||||||
if chat.categoryId != categoryId:
|
if chat.categoryId != categoryId:
|
||||||
continue
|
continue
|
||||||
if chat.unviewedMessagesCount > 0 or chat.unviewedMentionsCount > 0:
|
if (not chat.muted and chat.unviewedMessagesCount > 0) or chat.unviewedMentionsCount > 0:
|
||||||
return true
|
return true
|
||||||
return false
|
return false
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue