aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/protonet/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/protonet/webview.js')
-rwxr-xr-xrecipes/protonet/webview.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/protonet/webview.js b/recipes/protonet/webview.js
index 9ada45a..497ee8c 100755
--- a/recipes/protonet/webview.js
+++ b/recipes/protonet/webview.js
@@ -1,7 +1,7 @@
1module.exports = (Ferdi) => { 1module.exports = (Ferdi) => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const unreadPrivateMessages = parseInt($('.messages .unread-meeps').text()); 3 const unreadPrivateMessages = Ferdi.safeParseInt($('.messages .unread-meeps').text());
4 const unreadGroupMessages = parseInt($('.today .unread-meeps').text()); 4 const unreadGroupMessages = Ferdi.safeParseInt($('.today .unread-meeps').text());
5 5
6 Ferdi.setBadge(unreadPrivateMessages + unreadGroupMessages); 6 Ferdi.setBadge(unreadPrivateMessages + unreadGroupMessages);
7 }; 7 };