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.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/anydo/webview.js b/recipes/anydo/webview.js
index e35bfb5..cdb7e4f 100644
--- a/recipes/anydo/webview.js
+++ b/recipes/anydo/webview.js
@@ -1,4 +1,4 @@
1module.exports = (Franz) => { 1module.exports = (Ferdi) => {
2 function getTasks() { 2 function getTasks() {
3 let incompleteCount = 0; 3 let incompleteCount = 0;
4 4
@@ -10,8 +10,8 @@ module.exports = (Franz) => {
10 }); 10 });
11 } 11 }
12 12
13 Franz.setBadge(incompleteCount); 13 Ferdi.setBadge(incompleteCount);
14 } 14 }
15 15
16 Franz.loop(getTasks); 16 Ferdi.loop(getTasks);
17}; 17};