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.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/riseup/webview.js b/recipes/riseup/webview.js
index 0fb21f8..b3a78cf 100644
--- a/recipes/riseup/webview.js
+++ b/recipes/riseup/webview.js
@@ -1,9 +1,9 @@
1module.exports = Ferdi => { 1module.exports = Ferdi => {
2 const getMessages = () => { 2 const getMessages = () => {
3 let unread = 0; 3 let unread = 0;
4 const notificationBadge = document.getElementsByClassName('unreadcount')[0]; 4 const notificationBadge = document.querySelectorAll('.unreadcount')[0];
5 if (notificationBadge != undefined) { 5 if (notificationBadge != undefined) {
6 unread = Ferdi.safeParseInt(notificationBadge.innerText); 6 unread = Ferdi.safeParseInt(notificationBadge.textContent);
7 } 7 }
8 Ferdi.setBadge(unread); 8 Ferdi.setBadge(unread);
9 }; 9 };