aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud/webview.js
diff options
context:
space:
mode:
authorLibravatar Edgars <Edgars+GitHub@gaitenis.id.lv>2022-11-30 10:13:27 +0200
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-11-30 19:24:10 +0530
commitff551ee3375f35335f30c8bc8c6c5b7645d12cfe (patch)
tree29bc39b4164fd0c497c56b2f81a11e6909d87d82 /recipes/nextcloud/webview.js
parentfix: whatsapp not in fullscreen (diff)
downloadferdium-recipes-ff551ee3375f35335f30c8bc8c6c5b7645d12cfe.tar.gz
ferdium-recipes-ff551ee3375f35335f30c8bc8c6c5b7645d12cfe.tar.zst
ferdium-recipes-ff551ee3375f35335f30c8bc8c6c5b7645d12cfe.zip
Fix notifications count for Nextcloud 25
Diffstat (limited to 'recipes/nextcloud/webview.js')
-rw-r--r--recipes/nextcloud/webview.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes/nextcloud/webview.js b/recipes/nextcloud/webview.js
index 786f7a8..cb13e02 100644
--- a/recipes/nextcloud/webview.js
+++ b/recipes/nextcloud/webview.js
@@ -1,7 +1,9 @@
1module.exports = Ferdium => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const direct = document.querySelectorAll( 3 const direct = document.querySelector(
4 '.notifications .notification-container .notification-wrapper li .notification', 4 '#header-menu-notifications, .notifications'
5 ).querySelectorAll(
6 '.notification-container .notification-wrapper .notification'
5 ).length; 7 ).length;
6 8
7 Ferdium.setBadge(direct); 9 Ferdium.setBadge(direct);