aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/whatsapp/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/whatsapp/webview.js')
-rw-r--r--recipes/whatsapp/webview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/whatsapp/webview.js b/recipes/whatsapp/webview.js
index 89bc673..ad1b372 100644
--- a/recipes/whatsapp/webview.js
+++ b/recipes/whatsapp/webview.js
@@ -39,7 +39,7 @@ module.exports = Ferdium => {
39 query.onsuccess = (event) => { 39 query.onsuccess = (event) => {
40 for (const chat of event.target.result) { 40 for (const chat of event.target.result) {
41 if (chat.unreadCount > 0) { 41 if (chat.unreadCount > 0) {
42 if (chat.muteExpiration === 0) { 42 if (chat.muteExpiration === 0 && chat.archive === false) {
43 unreadCount += chat.unreadCount; 43 unreadCount += chat.unreadCount;
44 } else { 44 } else {
45 unreadMutedCount += chat.unreadCount; 45 unreadMutedCount += chat.unreadCount;