aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/telegram-react/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/telegram-react/webview.js')
-rw-r--r--recipes/telegram-react/webview.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/recipes/telegram-react/webview.js b/recipes/telegram-react/webview.js
index 030040b..b6240ff 100644
--- a/recipes/telegram-react/webview.js
+++ b/recipes/telegram-react/webview.js
@@ -1,4 +1,4 @@
1module.exports = Franz => { 1module.exports = Ferdi => {
2 const getMessages = function getMessages() { 2 const getMessages = function getMessages() {
3 let count = 0; 3 let count = 0;
4 const elements = document.querySelectorAll('.chatlist > li:not(.is-muted)'); 4 const elements = document.querySelectorAll('.chatlist > li:not(.is-muted)');
@@ -9,7 +9,8 @@ module.exports = Franz => {
9 } 9 }
10 } 10 }
11 } 11 }
12 Franz.setBadge(count); 12 Ferdi.setBadge(count);
13 }; 13 };
14 Franz.loop(getMessages); 14
15 Ferdi.loop(getMessages);
15}; 16};