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