aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/google-voice
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-08-31 16:25:57 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-08-31 16:25:57 +0530
commitdfae2d231e39c81827d08fd8834d736c5b3005b1 (patch)
tree5037b401e7de837fdd6046a3c61ac76aed240e6e /recipes/google-voice
parentNew recipe: odoo (diff)
downloadferdium-recipes-dfae2d231e39c81827d08fd8834d736c5b3005b1.tar.gz
ferdium-recipes-dfae2d231e39c81827d08fd8834d736c5b3005b1.tar.zst
ferdium-recipes-dfae2d231e39c81827d08fd8834d736c5b3005b1.zip
refactor: Use Ferdi.safeParseInt to ensure that parsing is done consistently in all recipes.
Diffstat (limited to 'recipes/google-voice')
-rw-r--r--recipes/google-voice/package.json2
-rw-r--r--recipes/google-voice/webview.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/recipes/google-voice/package.json b/recipes/google-voice/package.json
index 84eac14..20661e3 100644
--- a/recipes/google-voice/package.json
+++ b/recipes/google-voice/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "google-voice", 2 "id": "google-voice",
3 "name": "google-voice", 3 "name": "google-voice",
4 "version": "0.4.0", 4 "version": "0.4.1",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/BehindTheMath/franz-recipe-google-voice", 6 "repository": "https://github.com/BehindTheMath/franz-recipe-google-voice",
7 "config": { 7 "config": {
diff --git a/recipes/google-voice/webview.js b/recipes/google-voice/webview.js
index 7d9602c..53d34a1 100644
--- a/recipes/google-voice/webview.js
+++ b/recipes/google-voice/webview.js
@@ -1,7 +1,7 @@
1module.exports = Ferdi => { 1module.exports = Ferdi => {
2 function parseQuery(query) { 2 function parseQuery(query) {
3 const el = document.querySelector(query); 3 const el = document.querySelector(query);
4 return el && parseInt(el.innerHTML) || 0; 4 return el && Ferdi.safeParseInt(el.innerHTML);
5 } 5 }
6 6
7 function getMessages() { 7 function getMessages() {
@@ -9,7 +9,7 @@ module.exports = Ferdi => {
9 let count; 9 let count;
10 10
11 if (el) { 11 if (el) {
12 count = parseInt(el.innerHTML.replace(/[\(\) ]/gi, '')) || 0; 12 count = Ferdi.safeParseInt(el.innerHTML.replace(/[\(\) ]/gi, ''));
13 } else { 13 } else {
14 const count_messages = parseQuery('gv-nav-tab[tooltip="Messages"] div[aria-label="Unread count"]'); 14 const count_messages = parseQuery('gv-nav-tab[tooltip="Messages"] div[aria-label="Unread count"]');
15 const count_calls = parseQuery('gv-nav-tab[tooltip="Calls"] div[aria-label="Unread count"]'); 15 const count_calls = parseQuery('gv-nav-tab[tooltip="Calls"] div[aria-label="Unread count"]');