aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-02-10 09:05:35 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-02-10 03:41:30 +0000
commit502528751b3b0594e63fed20aa83d04e37ac7024 (patch)
treea808a154af00d5e2de3e50080e1703118c650b21 /recipes
parentFix formatting (diff)
downloadferdium-recipes-502528751b3b0594e63fed20aa83d04e37ac7024.tar.gz
ferdium-recipes-502528751b3b0594e63fed20aa83d04e37ac7024.tar.zst
ferdium-recipes-502528751b3b0594e63fed20aa83d04e37ac7024.zip
upgrade pnpm and other deps
Diffstat (limited to 'recipes')
-rw-r--r--recipes/zalo/package.json2
-rw-r--r--recipes/zalo/webview.js3
2 files changed, 3 insertions, 2 deletions
diff --git a/recipes/zalo/package.json b/recipes/zalo/package.json
index 76cef76..e2fafbc 100644
--- a/recipes/zalo/package.json
+++ b/recipes/zalo/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "zalo", 2 "id": "zalo",
3 "name": "Zalo", 3 "name": "Zalo",
4 "version": "1.5.0", 4 "version": "1.5.1",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://chat.zalo.me/", 7 "serviceURL": "https://chat.zalo.me/",
diff --git a/recipes/zalo/webview.js b/recipes/zalo/webview.js
index 3c432a6..3d0bfb8 100644
--- a/recipes/zalo/webview.js
+++ b/recipes/zalo/webview.js
@@ -36,7 +36,8 @@ module.exports = Ferdium => {
36 const convUnread = document.querySelectorAll( 36 const convUnread = document.querySelectorAll(
37 '.conv-unread:not(.func-unread__muted)', 37 '.conv-unread:not(.func-unread__muted)',
38 ); 38 );
39 if (convUnread.length === 0) count = 6; // 5+ 39 if (convUnread.length === 0)
40 count = 6; // 5+
40 else 41 else
41 for (const convUnreadItem of convUnread) { 42 for (const convUnreadItem of convUnread) {
42 switch (convUnreadItem.classList[1]) { 43 switch (convUnreadItem.classList[1]) {