aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/riseup/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/riseup/webview.js')
-rw-r--r--recipes/riseup/webview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/riseup/webview.js b/recipes/riseup/webview.js
index b3a78cf..6f63103 100644
--- a/recipes/riseup/webview.js
+++ b/recipes/riseup/webview.js
@@ -1,12 +1,12 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 let unread = 0; 3 let unread = 0;
4 const notificationBadge = document.querySelectorAll('.unreadcount')[0]; 4 const notificationBadge = document.querySelectorAll('.unreadcount')[0];
5 if (notificationBadge != undefined) { 5 if (notificationBadge != undefined) {
6 unread = Ferdi.safeParseInt(notificationBadge.textContent); 6 unread = Ferdium.safeParseInt(notificationBadge.textContent);
7 } 7 }
8 Ferdi.setBadge(unread); 8 Ferdium.setBadge(unread);
9 }; 9 };
10 10
11 Ferdi.loop(getMessages); 11 Ferdium.loop(getMessages);
12}; 12};