aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fleep/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/fleep/webview.js')
-rw-r--r--recipes/fleep/webview.js6
1 files changed, 3 insertions, 3 deletions
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};