aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/riseup
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/riseup')
-rw-r--r--recipes/riseup/index.js2
-rw-r--r--recipes/riseup/package.json2
-rw-r--r--recipes/riseup/webview.js8
3 files changed, 6 insertions, 6 deletions
diff --git a/recipes/riseup/index.js b/recipes/riseup/index.js
index d24be1d..dd41f72 100644
--- a/recipes/riseup/index.js
+++ b/recipes/riseup/index.js
@@ -1 +1 @@
module.exports = Ferdi => class riseupnet extends Ferdi {}; module.exports = Ferdium => Ferdium;
diff --git a/recipes/riseup/package.json b/recipes/riseup/package.json
index 88519ad..f6ea15b 100644
--- a/recipes/riseup/package.json
+++ b/recipes/riseup/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "riseup", 2 "id": "riseup",
3 "name": "Riseup.net", 3 "name": "Riseup.net",
4 "version": "1.1.3", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://mail.riseup.net" 7 "serviceURL": "https://mail.riseup.net"
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};