aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zoho
diff options
context:
space:
mode:
authorLibravatar Thomas Papamichail <thomas@pointer.gr>2020-11-04 14:51:19 +0200
committerLibravatar Thomas Papamichail <thomas@pointer.gr>2020-11-04 14:51:19 +0200
commit4adb208a4805d282ff8ac760dbd978c95e053466 (patch)
tree7466333e41d42945d33f278cb1a72f52ee5c623f /recipes/zoho
parentAdd recipe for Nextcloud (#343) (diff)
downloadferdium-recipes-4adb208a4805d282ff8ac760dbd978c95e053466.tar.gz
ferdium-recipes-4adb208a4805d282ff8ac760dbd978c95e053466.tar.zst
ferdium-recipes-4adb208a4805d282ff8ac760dbd978c95e053466.zip
Fix unread emails css selector
Diffstat (limited to 'recipes/zoho')
-rw-r--r--recipes/zoho/webview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/zoho/webview.js b/recipes/zoho/webview.js
index e4f6108..4e8c900 100644
--- a/recipes/zoho/webview.js
+++ b/recipes/zoho/webview.js
@@ -2,7 +2,7 @@ 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 unreadMail = $(".zmList.zmLUrd").length;
6 6
7 Franz.setBadge(unreadMail); 7 Franz.setBadge(unreadMail);
8 } 8 }