aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/clockify
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/clockify')
-rw-r--r--recipes/clockify/index.js2
-rw-r--r--recipes/clockify/package.json2
-rw-r--r--recipes/clockify/webview.js6
3 files changed, 5 insertions, 5 deletions
diff --git a/recipes/clockify/index.js b/recipes/clockify/index.js
index 258da41..23607bd 100644
--- a/recipes/clockify/index.js
+++ b/recipes/clockify/index.js
@@ -1 +1 @@
module.exports = Franz => Franz; module.exports = Ferdi => Ferdi;
diff --git a/recipes/clockify/package.json b/recipes/clockify/package.json
index eff6348..c48e32b 100644
--- a/recipes/clockify/package.json
+++ b/recipes/clockify/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "clockify", 2 "id": "clockify",
3 "name": "Clockify", 3 "name": "Clockify",
4 "version": "1.0.3", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://clockify.me/tracker", 7 "serviceURL": "https://clockify.me/tracker",
diff --git a/recipes/clockify/webview.js b/recipes/clockify/webview.js
index 470b3ea..252b3e3 100644
--- a/recipes/clockify/webview.js
+++ b/recipes/clockify/webview.js
@@ -1,9 +1,9 @@
1module.exports = Franz => { 1module.exports = Ferdi => {
2 const getMessages = function getMessages() { 2 const getMessages = function getMessages() {
3 const notifications = document.querySelectorAll('.notification--number'); 3 const notifications = document.querySelectorAll('.notification--number');
4 4
5 Franz.setBadge(0, notifications.length >= 1 ? 1 : 0); 5 Ferdi.setBadge(0, notifications.length >= 1 ? 1 : 0);
6 }; 6 };
7 7
8 Franz.loop(getMessages); 8 Ferdi.loop(getMessages);
9}; 9};