aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zimbra
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/zimbra')
-rw-r--r--recipes/zimbra/index.js2
-rw-r--r--recipes/zimbra/package.json2
-rw-r--r--recipes/zimbra/webview.js13
3 files changed, 5 insertions, 12 deletions
diff --git a/recipes/zimbra/index.js b/recipes/zimbra/index.js
index 94357a3..1b0a47f 100644
--- a/recipes/zimbra/index.js
+++ b/recipes/zimbra/index.js
@@ -1,4 +1,4 @@
1module.exports = Franz => class Zimbra extends Franz { 1module.exports = Ferdi => class Zimbra extends Ferdi {
2 async validateUrl(url) { 2 async validateUrl(url) {
3 return true; 3 return true;
4 } 4 }
diff --git a/recipes/zimbra/package.json b/recipes/zimbra/package.json
index 9d9ae67..0fc0fc4 100644
--- a/recipes/zimbra/package.json
+++ b/recipes/zimbra/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "zimbra", 2 "id": "zimbra",
3 "name": "Zimbra", 3 "name": "Zimbra",
4 "version": "1.0.2", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "hasNotificationSound": true, 7 "hasNotificationSound": true,
diff --git a/recipes/zimbra/webview.js b/recipes/zimbra/webview.js
index f56f09d..e2cf890 100644
--- a/recipes/zimbra/webview.js
+++ b/recipes/zimbra/webview.js
@@ -1,16 +1,9 @@
1module.exports = Franz => { 1module.exports = Ferdi => {
2 const getMessages = function getMessages() { 2 const getMessages = function getMessages() {
3 const { title } = document; 3 const { title } = document;
4 const regex = /\d+/; 4 const regex = /\d+/;
5 5 Ferdi.setBadge(regex.test(title) ? Number(regex.exec(title)[0]) : 0);
6 if (regex.test(title)) {
7 Franz.setBadge(
8 Number(regex.exec(title)[0]),
9 );
10 } else {
11 Franz.setBadge(0);
12 }
13 }; 6 };
14 7
15 Franz.loop(getMessages); 8 Ferdi.loop(getMessages);
16}; 9};