aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/guilded/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/guilded/webview.js')
-rw-r--r--recipes/guilded/webview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/guilded/webview.js b/recipes/guilded/webview.js
index 69c3bcb..a573790 100644
--- a/recipes/guilded/webview.js
+++ b/recipes/guilded/webview.js
@@ -1,4 +1,4 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 let unread = 0; 3 let unread = 0;
4 const notificationBadge = document.querySelectorAll( 4 const notificationBadge = document.querySelectorAll(
@@ -7,10 +7,10 @@ module.exports = Ferdi => {
7 if (notificationBadge != undefined) { 7 if (notificationBadge != undefined) {
8 const innerBadge = 8 const innerBadge =
9 notificationBadge.querySelectorAll('.BadgeV2-count')[0]; 9 notificationBadge.querySelectorAll('.BadgeV2-count')[0];
10 unread = Ferdi.safeParseInt(innerBadge.textContent); 10 unread = Ferdium.safeParseInt(innerBadge.textContent);
11 } 11 }
12 Ferdi.setBadge(unread); 12 Ferdium.setBadge(unread);
13 }; 13 };
14 14
15 Ferdi.loop(getMessages); 15 Ferdium.loop(getMessages);
16}; 16};