aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/proton-mail/webview.js
diff options
context:
space:
mode:
authorLibravatar deadmeu <deadmeu@gmail.com>2021-11-29 01:58:16 +1100
committerLibravatar GitHub <noreply@github.com>2021-11-28 20:28:16 +0530
commit37485190b18ccd01d01e2bfe68960b32d8ed357a (patch)
treebbc88d7262e5c702c92d74702c009ed30b719a1c /recipes/proton-mail/webview.js
parentFix skype notification counter for non-English locales(fixes #763) (#775) (diff)
downloadferdium-recipes-37485190b18ccd01d01e2bfe68960b32d8ed357a.tar.gz
ferdium-recipes-37485190b18ccd01d01e2bfe68960b32d8ed357a.tar.zst
ferdium-recipes-37485190b18ccd01d01e2bfe68960b32d8ed357a.zip
Add RingCentral recipe (#776)
Diffstat (limited to 'recipes/proton-mail/webview.js')
-rw-r--r--recipes/proton-mail/webview.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/proton-mail/webview.js b/recipes/proton-mail/webview.js
index 89e5dab..455a0c4 100644
--- a/recipes/proton-mail/webview.js
+++ b/recipes/proton-mail/webview.js
@@ -2,10 +2,10 @@ module.exports = Ferdi => {
2 const getMessages = () => { 2 const getMessages = () => {
3 let unreadCount = 0; 3 let unreadCount = 0;
4 // Loop over all displayed counters and take the highest one (from the "All Mail" folder) 4 // Loop over all displayed counters and take the highest one (from the "All Mail" folder)
5 document.querySelectorAll('.navigation-counter-item').forEach(counterElement => { 5 for (const counterElement of document.querySelectorAll('.navigation-counter-item')) {
6 const unreadCounter = Ferdi.safeParseInt(counterElement.textContent); 6 const unreadCounter = Ferdi.safeParseInt(counterElement.textContent);
7 unreadCount = Math.max(unreadCount, unreadCounter); 7 unreadCount = Math.max(unreadCount, unreadCounter);
8 }); 8 }
9 9
10 Ferdi.setBadge(unreadCount); 10 Ferdi.setBadge(unreadCount);
11 }; 11 };