aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar RoiArthurB <contact@arthurbrugiere.fr>2020-04-28 17:43:27 +0700
committerLibravatar RoiArthurB <contact@arthurbrugiere.fr>2020-04-28 17:43:27 +0700
commitd8b7b63dcaab46940a271939b7284100b7ac9328 (patch)
treeccca80420da39a0cae8409016ef7d4b3e79b4e43
parent[ZALO] Update getMessages (diff)
downloadferdium-recipes-d8b7b63dcaab46940a271939b7284100b7ac9328.tar.gz
ferdium-recipes-d8b7b63dcaab46940a271939b7284100b7ac9328.tar.zst
ferdium-recipes-d8b7b63dcaab46940a271939b7284100b7ac9328.zip
[ZALO] Fix variable use
Thanks @vantezzen
-rw-r--r--all.json2
-rw-r--r--archives/zalo.tar.gzbin51954 -> 51951 bytes
-rw-r--r--uncompressed/zalo/package.json2
-rw-r--r--uncompressed/zalo/webview.js2
4 files changed, 3 insertions, 3 deletions
diff --git a/all.json b/all.json
index 1152af6..7aca725 100644
--- a/all.json
+++ b/all.json
@@ -1049,7 +1049,7 @@
1049 "featured": false, 1049 "featured": false,
1050 "id": "zalo", 1050 "id": "zalo",
1051 "name": "Zalo", 1051 "name": "Zalo",
1052 "version": "1.1.0", 1052 "version": "1.1.1",
1053 "icons": { 1053 "icons": {
1054 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/uncompressed/zalo/icon.png", 1054 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/uncompressed/zalo/icon.png",
1055 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/uncompressed/zalo/icon.svg" 1055 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/uncompressed/zalo/icon.svg"
diff --git a/archives/zalo.tar.gz b/archives/zalo.tar.gz
index 8e33a97..c11f022 100644
--- a/archives/zalo.tar.gz
+++ b/archives/zalo.tar.gz
Binary files differ
diff --git a/uncompressed/zalo/package.json b/uncompressed/zalo/package.json
index 57c57ce..183fc20 100644
--- a/uncompressed/zalo/package.json
+++ b/uncompressed/zalo/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "zalo", 2 "id": "zalo",
3 "name": "Zalo", 3 "name": "Zalo",
4 "version": "1.1.0", 4 "version": "1.1.1",
5 "description": "Zalo", 5 "description": "Zalo",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "RoiArthurB <arthurbrugiere01@gmail.com>", 7 "author": "RoiArthurB <arthurbrugiere01@gmail.com>",
diff --git a/uncompressed/zalo/webview.js b/uncompressed/zalo/webview.js
index 34ae4ac..0f360c3 100644
--- a/uncompressed/zalo/webview.js
+++ b/uncompressed/zalo/webview.js
@@ -4,7 +4,7 @@ module.exports = Franz => {
4 const getMessages = function getMessages() { 4 const getMessages = function getMessages() {
5 var unread = 0 5 var unread = 0
6 const notificationBadge = document.getElementsByClassName('tab-red-dot').length; 6 const notificationBadge = document.getElementsByClassName('tab-red-dot').length;
7 Franz.setBadge(unread); 7 Franz.setBadge(notificationBadge);
8 }; 8 };
9 9
10 Franz.loop(getMessages); 10 Franz.loop(getMessages);