aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/flock
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/flock')
-rw-r--r--recipes/flock/index.js2
-rw-r--r--recipes/flock/package.json2
-rw-r--r--recipes/flock/webview.js8
3 files changed, 6 insertions, 6 deletions
diff --git a/recipes/flock/index.js b/recipes/flock/index.js
index 23607bd..dd41f72 100644
--- a/recipes/flock/index.js
+++ b/recipes/flock/index.js
@@ -1 +1 @@
module.exports = Ferdi => Ferdi; module.exports = Ferdium => Ferdium;
diff --git a/recipes/flock/package.json b/recipes/flock/package.json
index 83e5b94..11932cf 100644
--- a/recipes/flock/package.json
+++ b/recipes/flock/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "flock", 2 "id": "flock",
3 "name": "Flock", 3 "name": "Flock",
4 "version": "1.0.0", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/jereddowden/franz-recipe-flock", 6 "repository": "https://github.com/jereddowden/franz-recipe-flock",
7 "config": { 7 "config": {
diff --git a/recipes/flock/webview.js b/recipes/flock/webview.js
index 29b52d3..1a74734 100644
--- a/recipes/flock/webview.js
+++ b/recipes/flock/webview.js
@@ -1,7 +1,7 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const allMessages = Ferdi.safeParseInt(document.querySelector('.team-counter').textContent); 3 const allMessages = Ferdium.safeParseInt(document.querySelector('.team-counter').textContent);
4 Ferdi.setBadge(allMessages); 4 Ferdium.setBadge(allMessages);
5 }; 5 };
6 Ferdi.loop(getMessages); 6 Ferdium.loop(getMessages);
7}; 7};