aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/roundcube
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/roundcube')
-rw-r--r--recipes/roundcube/package.json2
-rw-r--r--recipes/roundcube/webview.js3
2 files changed, 2 insertions, 3 deletions
diff --git a/recipes/roundcube/package.json b/recipes/roundcube/package.json
index 2bd8dba..d36a816 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.0", 4 "version": "1.1.1",
5 "repository": "https://github.com/jonathanjuursema/franz-roundcube", 5 "repository": "https://github.com/jonathanjuursema/franz-roundcube",
6 "license": "MIT", 6 "license": "MIT",
7 "config": { 7 "config": {
diff --git a/recipes/roundcube/webview.js b/recipes/roundcube/webview.js
index 8a2ffef..ce9872a 100644
--- a/recipes/roundcube/webview.js
+++ b/recipes/roundcube/webview.js
@@ -3,8 +3,7 @@ module.exports = Ferdi => {
3 const directElements = document.querySelectorAll('.unreadcount'); 3 const directElements = document.querySelectorAll('.unreadcount');
4 let direct = 0; 4 let direct = 0;
5 for (let i = 0; i < directElements.length; i += 1) { 5 for (let i = 0; i < directElements.length; i += 1) {
6 const n = parseInt(directElements[i].innerHTML); 6 direct += Ferdi.safeParseInt(directElements[i].innerHTML);
7 direct += isNaN(n) ? 0 : n;
8 } 7 }
9 Ferdi.setBadge(direct); 8 Ferdi.setBadge(direct);
10 }; 9 };