aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/anydo/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/anydo/webview.js')
-rw-r--r--recipes/anydo/webview.js2
1 files changed, 1 insertions, 1 deletions
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