aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/canvas/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/canvas/webview.js')
-rw-r--r--recipes/canvas/webview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/canvas/webview.js b/recipes/canvas/webview.js
index 070a975..5294f66 100644
--- a/recipes/canvas/webview.js
+++ b/recipes/canvas/webview.js
@@ -1,4 +1,4 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 let direct = 0; 3 let direct = 0;
4 4
@@ -6,11 +6,11 @@ module.exports = Ferdi => {
6 '[id=global_nav_conversations_link]', 6 '[id=global_nav_conversations_link]',
7 ); 7 );
8 if (MessageElement) { 8 if (MessageElement) {
9 direct += Ferdi.safeParseInt(MessageElement.textContent); 9 direct += Ferdium.safeParseInt(MessageElement.textContent);
10 } 10 }
11 11
12 Ferdi.setBadge(direct); 12 Ferdium.setBadge(direct);
13 }; 13 };
14 14
15 Ferdi.loop(getMessages); 15 Ferdium.loop(getMessages);
16}; 16};