aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes/zoho/package.json2
-rw-r--r--recipes/zoho/webview.js7
2 files changed, 5 insertions, 4 deletions
diff --git a/recipes/zoho/package.json b/recipes/zoho/package.json
index 331f1e7..3b479d2 100644
--- a/recipes/zoho/package.json
+++ b/recipes/zoho/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "zoho", 2 "id": "zoho",
3 "name": "Zoho Mail", 3 "name": "Zoho Mail",
4 "version": "1.0.1", 4 "version": "1.0.2",
5 "description": "Zoho Mail – Hosted Email for Businesses", 5 "description": "Zoho Mail – Hosted Email for Businesses",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Troke <jame_glove@yahoo.com>", 7 "author": "Troke <jame_glove@yahoo.com>",
diff --git a/recipes/zoho/webview.js b/recipes/zoho/webview.js
index e4f6108..29ffa9c 100644
--- a/recipes/zoho/webview.js
+++ b/recipes/zoho/webview.js
@@ -2,10 +2,11 @@ const path = require('path');
2 2
3module.exports = (Franz, options) => { 3module.exports = (Franz, options) => {
4 const getMessages = () => { 4 const getMessages = () => {
5 const unreadMail = $(".zm_urd").not(".hidden").length; 5 const unreadMailInCurrentFolder = $(".zmList.zmLUrd").length;
6 const unreadMailAnyware = $("#zmlTree .zmTreeNDWra .zmBold").length;
6 7
7 Franz.setBadge(unreadMail); 8 Franz.setBadge(unreadMailInCurrentFolder, unreadMailAnyware);
8 } 9 }
9 10
10 Franz.loop(getMessages); 11 Franz.loop(getMessages);
11}; \ No newline at end of file 12};