aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/TickTick/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/TickTick/webview.js')
-rw-r--r--recipes/TickTick/webview.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/TickTick/webview.js b/recipes/TickTick/webview.js
index ae3265b..d2c7ef5 100644
--- a/recipes/TickTick/webview.js
+++ b/recipes/TickTick/webview.js
@@ -1,10 +1,10 @@
1module.exports = (Ferdi) => { 1module.exports = (Ferdium) => {
2 const getMessages = () => { 2 const getMessages = () => {
3 // all overdue items are being counted 3 // all overdue items are being counted
4 const count = document.querySelectorAll('.duedate-overdue').length; 4 const count = document.querySelectorAll('.duedate-overdue').length;
5 5
6 Ferdi.setBadge(count); 6 Ferdium.setBadge(count);
7 }; 7 };
8 8
9 Ferdi.loop(getMessages); 9 Ferdium.loop(getMessages);
10}; 10};