aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/guilded/webview.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-18 06:51:50 -0500
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-18 06:51:50 -0500
commit18801ed0c02627e87639dc0848cab44dacc18be2 (patch)
tree15e56ba66c68bf7b4594e6c9fdef44e037b4be31 /recipes/guilded/webview.js
parentRemove deprecated webPreference flag (diff)
downloadferdium-recipes-18801ed0c02627e87639dc0848cab44dacc18be2.tar.gz
ferdium-recipes-18801ed0c02627e87639dc0848cab44dacc18be2.tar.zst
ferdium-recipes-18801ed0c02627e87639dc0848cab44dacc18be2.zip
Rebranded from 'ferdi' to 'ferdium' (companion changes for the main repo PR #2)
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};