aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/webex-teams/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/webex-teams/webview.js')
-rw-r--r--recipes/webex-teams/webview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/webex-teams/webview.js b/recipes/webex-teams/webview.js
index 8a748e8..01ae230 100644
--- a/recipes/webex-teams/webview.js
+++ b/recipes/webex-teams/webview.js
@@ -1,4 +1,4 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 let count = 0; 3 let count = 0;
4 4
@@ -11,11 +11,11 @@ module.exports = Ferdi => {
11 } 11 }
12 12
13 if (span.length > 0) { 13 if (span.length > 0) {
14 count = Ferdi.safeParseInt(span[0].textContent); 14 count = Ferdium.safeParseInt(span[0].textContent);
15 } 15 }
16 16
17 Ferdi.setBadge(count); 17 Ferdium.setBadge(count);
18 }; 18 };
19 19
20 Ferdi.loop(getMessages); 20 Ferdium.loop(getMessages);
21}; 21};