aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/anydo
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/anydo')
-rw-r--r--recipes/anydo/package.json2
-rw-r--r--recipes/anydo/webview.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/anydo/package.json b/recipes/anydo/package.json
index e015aee..eb6d8d4 100644
--- a/recipes/anydo/package.json
+++ b/recipes/anydo/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "anydo", 2 "id": "anydo",
3 "name": "Any.do", 3 "name": "Any.do",
4 "version": "1.1.0", 4 "version": "1.1.1",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/chappy84/recipe-anydo", 6 "repository": "https://github.com/chappy84/recipe-anydo",
7 "config": { 7 "config": {
diff --git a/recipes/anydo/webview.js b/recipes/anydo/webview.js
index cdb7e4f..4f4749b 100644
--- a/recipes/anydo/webview.js
+++ b/recipes/anydo/webview.js
@@ -6,7 +6,7 @@ module.exports = (Ferdi) => {
6 6
7 if (countEls.length) { 7 if (countEls.length) {
8 Array.from(countEls).forEach((el) => { 8 Array.from(countEls).forEach((el) => {
9 incompleteCount += parseInt(el.innerHTML, 10); 9 incompleteCount += Ferdi.safeParseInt(el.innerHTML);
10 }); 10 });
11 } 11 }
12 12