aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/enterprise-owa
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/enterprise-owa')
-rw-r--r--recipes/enterprise-owa/index.js2
-rw-r--r--recipes/enterprise-owa/package.json2
-rw-r--r--recipes/enterprise-owa/webview.js7
3 files changed, 6 insertions, 5 deletions
diff --git a/recipes/enterprise-owa/index.js b/recipes/enterprise-owa/index.js
index 258da41..23607bd 100644
--- a/recipes/enterprise-owa/index.js
+++ b/recipes/enterprise-owa/index.js
@@ -1 +1 @@
module.exports = Franz => Franz; module.exports = Ferdi => Ferdi;
diff --git a/recipes/enterprise-owa/package.json b/recipes/enterprise-owa/package.json
index ffe012c..2e0ac2c 100644
--- a/recipes/enterprise-owa/package.json
+++ b/recipes/enterprise-owa/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "enterprise-owa", 2 "id": "enterprise-owa",
3 "name": "Enterprise Outlook Web App", 3 "name": "Enterprise Outlook Web App",
4 "version": "1.1.2", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://owa.yourcompany.com/owa", 7 "serviceURL": "https://owa.yourcompany.com/owa",
diff --git a/recipes/enterprise-owa/webview.js b/recipes/enterprise-owa/webview.js
index 1fa1a12..de007b3 100644
--- a/recipes/enterprise-owa/webview.js
+++ b/recipes/enterprise-owa/webview.js
@@ -1,4 +1,4 @@
1module.exports = Franz => { 1module.exports = Ferdi => {
2 const getMessages = function getMessages() { 2 const getMessages = function getMessages() {
3 let unreadMail = 0; 3 let unreadMail = 0;
4 4
@@ -25,7 +25,8 @@ module.exports = Franz => {
25 }, 0); 25 }, 0);
26 } 26 }
27 27
28 Franz.setBadge(unreadMail); 28 Ferdi.setBadge(unreadMail);
29 }; 29 };
30 Franz.loop(getMessages); 30
31 Ferdi.loop(getMessages);
31}; 32};