aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/webex-teams
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/webex-teams')
-rw-r--r--recipes/webex-teams/index.js2
-rw-r--r--recipes/webex-teams/package.json2
-rw-r--r--recipes/webex-teams/webview.js8
3 files changed, 6 insertions, 6 deletions
diff --git a/recipes/webex-teams/index.js b/recipes/webex-teams/index.js
index 23607bd..dd41f72 100644
--- a/recipes/webex-teams/index.js
+++ b/recipes/webex-teams/index.js
@@ -1 +1 @@
module.exports = Ferdi => Ferdi; module.exports = Ferdium => Ferdium;
diff --git a/recipes/webex-teams/package.json b/recipes/webex-teams/package.json
index 7bef37a..6d3b780 100644
--- a/recipes/webex-teams/package.json
+++ b/recipes/webex-teams/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "webex-teams", 2 "id": "webex-teams",
3 "name": "Webex Teams", 3 "name": "Webex Teams",
4 "version": "1.1.2", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://web.webex.com", 7 "serviceURL": "https://web.webex.com",
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};