aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/riseup
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/riseup')
-rw-r--r--recipes/riseup/index.js3
-rw-r--r--recipes/riseup/webview.js4
2 files changed, 3 insertions, 4 deletions
diff --git a/recipes/riseup/index.js b/recipes/riseup/index.js
index b4e1380..d24be1d 100644
--- a/recipes/riseup/index.js
+++ b/recipes/riseup/index.js
@@ -1,2 +1 @@
1module.exports = Ferdi => class riseupnet extends Ferdi { module.exports = Ferdi => class riseupnet extends Ferdi {};
2};
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 };