aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-talk
diff options
context:
space:
mode:
authorLibravatar Jürgen Haas <github@paragon-es.de>2022-06-21 01:55:23 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-20 23:55:23 +0000
commitd1a9f0d9bf3eaee4f2a527cc3f70d2cd9f6e08d0 (patch)
tree24c5a7929d6744840ae3d29858e96d6409f73845 /recipes/nextcloud-talk
parentUpgrade 'node' to '16.15.1' and 'pnpm' to '7.3.0' (diff)
downloadferdium-recipes-d1a9f0d9bf3eaee4f2a527cc3f70d2cd9f6e08d0.tar.gz
ferdium-recipes-d1a9f0d9bf3eaee4f2a527cc3f70d2cd9f6e08d0.tar.zst
ferdium-recipes-d1a9f0d9bf3eaee4f2a527cc3f70d2cd9f6e08d0.zip
Nextcloud-Talk has missing character in selector (#64)
Fixes #63
Diffstat (limited to 'recipes/nextcloud-talk')
-rw-r--r--recipes/nextcloud-talk/package.json2
-rw-r--r--recipes/nextcloud-talk/webview.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/nextcloud-talk/package.json b/recipes/nextcloud-talk/package.json
index 9933228..ac55283 100644
--- a/recipes/nextcloud-talk/package.json
+++ b/recipes/nextcloud-talk/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "nextcloud-talk", 2 "id": "nextcloud-talk",
3 "name": "Nextcloud Talk", 3 "name": "Nextcloud Talk",
4 "version": "1.3.0", 4 "version": "1.3.1",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "hasNotificationSound": true, 7 "hasNotificationSound": true,
diff --git a/recipes/nextcloud-talk/webview.js b/recipes/nextcloud-talk/webview.js
index 96681f6..1ae3783 100644
--- a/recipes/nextcloud-talk/webview.js
+++ b/recipes/nextcloud-talk/webview.js
@@ -11,7 +11,7 @@ module.exports = Ferdium => {
11 11
12 if (notificationWrapper) { 12 if (notificationWrapper) {
13 direct = notificationWrapper.querySelectorAll( 13 direct = notificationWrapper.querySelectorAll(
14 '.notification[object_type="chat"], .notification[object_type="room"', 14 '.notification[object_type="chat"], .notification[object_type="room"]',
15 ).length; 15 ).length;
16 } 16 }
17 17