aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fleep
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/fleep')
-rw-r--r--recipes/fleep/index.js2
-rw-r--r--recipes/fleep/package.json2
-rw-r--r--recipes/fleep/webview.js6
3 files changed, 5 insertions, 5 deletions
diff --git a/recipes/fleep/index.js b/recipes/fleep/index.js
index 44283d7..dd41f72 100644
--- a/recipes/fleep/index.js
+++ b/recipes/fleep/index.js
@@ -1 +1 @@
module.exports = Ferdi => class fleep extends Ferdi {}; module.exports = Ferdium => Ferdium;
diff --git a/recipes/fleep/package.json b/recipes/fleep/package.json
index 1781341..7cb338b 100644
--- a/recipes/fleep/package.json
+++ b/recipes/fleep/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "fleep", 2 "id": "fleep",
3 "name": "Fleep", 3 "name": "Fleep",
4 "version": "1.1.2", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://fleep.io/chat" 7 "serviceURL": "https://fleep.io/chat"
diff --git a/recipes/fleep/webview.js b/recipes/fleep/webview.js
index eaefbd1..65c8133 100644
--- a/recipes/fleep/webview.js
+++ b/recipes/fleep/webview.js
@@ -1,9 +1,9 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 // Count number of conversations or teams with unread messages 3 // Count number of conversations or teams with unread messages
4 const count = document.querySelectorAll('.unread-count').length; 4 const count = document.querySelectorAll('.unread-count').length;
5 Ferdi.setBadge(count, 0); 5 Ferdium.setBadge(count, 0);
6 }; 6 };
7 7
8 Ferdi.loop(getMessages); 8 Ferdium.loop(getMessages);
9}; 9};