aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/roundcube
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/roundcube')
-rw-r--r--recipes/roundcube/index.js2
-rw-r--r--recipes/roundcube/package.json2
-rw-r--r--recipes/roundcube/webview.js8
3 files changed, 6 insertions, 6 deletions
diff --git a/recipes/roundcube/index.js b/recipes/roundcube/index.js
index 23607bd..dd41f72 100644
--- a/recipes/roundcube/index.js
+++ b/recipes/roundcube/index.js
@@ -1 +1 @@
module.exports = Ferdi => Ferdi; module.exports = Ferdium => Ferdium;
diff --git a/recipes/roundcube/package.json b/recipes/roundcube/package.json
index 362b48e..6378ff8 100644
--- a/recipes/roundcube/package.json
+++ b/recipes/roundcube/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "roundcube", 2 "id": "roundcube",
3 "name": "Roundcube", 3 "name": "Roundcube",
4 "version": "1.1.2", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/jonathanjuursema/franz-roundcube", 6 "repository": "https://github.com/jonathanjuursema/franz-roundcube",
7 "config": { 7 "config": {
diff --git a/recipes/roundcube/webview.js b/recipes/roundcube/webview.js
index 08c6a95..f9aead4 100644
--- a/recipes/roundcube/webview.js
+++ b/recipes/roundcube/webview.js
@@ -1,12 +1,12 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const directElements = document.querySelectorAll('.unreadcount'); 3 const directElements = document.querySelectorAll('.unreadcount');
4 let direct = 0; 4 let direct = 0;
5 for (const directElement of directElements) { 5 for (const directElement of directElements) {
6 direct += Ferdi.safeParseInt(directElement.textContent); 6 direct += Ferdium.safeParseInt(directElement.textContent);
7 } 7 }
8 Ferdi.setBadge(direct); 8 Ferdium.setBadge(direct);
9 }; 9 };
10 10
11 Ferdi.loop(getMessages); 11 Ferdium.loop(getMessages);
12}; 12};