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.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/proton-mail/webview.js b/recipes/proton-mail/webview.js
index 455a0c4..dc3499a 100644
--- a/recipes/proton-mail/webview.js
+++ b/recipes/proton-mail/webview.js
@@ -1,14 +1,14 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
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 for (const counterElement of document.querySelectorAll('.navigation-counter-item')) { 5 for (const counterElement of document.querySelectorAll('.navigation-counter-item')) {
6 const unreadCounter = Ferdi.safeParseInt(counterElement.textContent); 6 const unreadCounter = Ferdium.safeParseInt(counterElement.textContent);
7 unreadCount = Math.max(unreadCount, unreadCounter); 7 unreadCount = Math.max(unreadCount, unreadCounter);
8 } 8 }
9 9
10 Ferdi.setBadge(unreadCount); 10 Ferdium.setBadge(unreadCount);
11 }; 11 };
12 12
13 Ferdi.loop(getMessages); 13 Ferdium.loop(getMessages);
14}; 14};