aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/trello/webview.js
diff options
context:
space:
mode:
authorLibravatar Feiko Joosten <feiko_joosten@hotmail.com>2020-04-21 20:12:20 +0200
committerLibravatar GitHub <noreply@github.com>2020-04-21 18:12:20 +0000
commitdd673c8d574aec53bec12001d084b23015ca7bd2 (patch)
treee0bc7a05e6bf35c4e271684079376f22dae08f78 /uncompressed/trello/webview.js
parentAdd support for indirect messages in MS Teams (#124) (diff)
downloadferdium-recipes-dd673c8d574aec53bec12001d084b23015ca7bd2.tar.gz
ferdium-recipes-dd673c8d574aec53bec12001d084b23015ca7bd2.tar.zst
ferdium-recipes-dd673c8d574aec53bec12001d084b23015ca7bd2.zip
Fix notifications for Trello (#123)
- Fixed notifications for trello - Fixed the icon.png being the incorrect size. (from 600px to 1024px)
Diffstat (limited to 'uncompressed/trello/webview.js')
-rw-r--r--uncompressed/trello/webview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/uncompressed/trello/webview.js b/uncompressed/trello/webview.js
index e8214dd..b65ea61 100644
--- a/uncompressed/trello/webview.js
+++ b/uncompressed/trello/webview.js
@@ -2,7 +2,7 @@
2 2
3module.exports = Franz => { 3module.exports = Franz => {
4 const getMessages = function getMessages() { 4 const getMessages = function getMessages() {
5 const notifications = document.querySelectorAll('.new-notifications'); 5 const notifications = document.querySelectorAll("[class*=_3W-zkl4-bnVKzJ]");
6 6
7 Franz.setBadge(0, notifications.length >= 1 ? 1 : 0); 7 Franz.setBadge(0, notifications.length >= 1 ? 1 : 0);
8 }; 8 };