From ce51fddd33664e8a92d0f543f3a7013690375908 Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Mon, 14 Jun 2021 09:57:11 +0300 Subject: [PATCH] Folders: Show chats with unread mentions in non-muted lists (#1158) --- src/modules/helpers/chats.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/helpers/chats.ts b/src/modules/helpers/chats.ts index 7fb827760..b119ea00e 100644 --- a/src/modules/helpers/chats.ts +++ b/src/modules/helpers/chats.ts @@ -269,7 +269,7 @@ function filterChatFolder( return false; } - if (folder.excludeMuted && selectIsChatMuted(chat, notifySettings, notifyExceptions)) { + if (folder.excludeMuted && !chat.unreadMentionsCount && selectIsChatMuted(chat, notifySettings, notifyExceptions)) { return false; }