aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googleclassroom/webview.js
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/googleclassroom/webview.js
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/googleclassroom/webview.js')
-rw-r--r--recipes/googleclassroom/webview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/googleclassroom/webview.js b/recipes/googleclassroom/webview.js
index 6431df8..c634b35 100644
--- a/recipes/googleclassroom/webview.js
+++ b/recipes/googleclassroom/webview.js
@@ -8,7 +8,7 @@ module.exports = Ferdi => {
8 homework += upcomingAssignment[i].childElementCount; 8 homework += upcomingAssignment[i].childElementCount;
9 } 9 }
10 } 10 }
11 Ferdi.setBadge(parseInt(homework, 10)); 11 Ferdi.setBadge(homework);
12 }; 12 };
13 13
14 Ferdi.loop(getMessages); 14 Ferdi.loop(getMessages);