aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/proton-mail/webview.js
diff options
context:
space:
mode:
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 };