aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/whatsapp/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/whatsapp/webview.js')
-rw-r--r--recipes/whatsapp/webview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/whatsapp/webview.js b/recipes/whatsapp/webview.js
index 773caa8..9b979d2 100644
--- a/recipes/whatsapp/webview.js
+++ b/recipes/whatsapp/webview.js
@@ -36,7 +36,7 @@ module.exports = Ferdi => {
36 const chatElem = chatElems[i]; 36 const chatElem = chatElems[i];
37 const unreadElem = chatElem.children[0].children[0].children[1].children[1].children[1]; 37 const unreadElem = chatElem.children[0].children[0].children[1].children[1].children[1];
38 38
39 const countValue = parseInt(unreadElem.textContent) || 0; // Returns 0 in case of isNaN 39 const countValue = Ferdi.safeParseInt(unreadElem.textContent);
40 40
41 if (unreadElem.querySelectorAll('[data-icon=muted]').length === 0) { 41 if (unreadElem.querySelectorAll('[data-icon=muted]').length === 0) {
42 count += countValue; 42 count += countValue;