aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/redditchat/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/redditchat/webview.js')
-rw-r--r--recipes/redditchat/webview.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/redditchat/webview.js b/recipes/redditchat/webview.js
index 19b306c..6dc736a 100644
--- a/recipes/redditchat/webview.js
+++ b/recipes/redditchat/webview.js
@@ -1,4 +1,4 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 // Regular expression for (*) or (1), will extract the asterisk or the number 2 // Regular expression for (*) or (1), will extract the asterisk or the number
3 const titleRegEx = /^\(([\d*])\)/; 3 const titleRegEx = /^\(([\d*])\)/;
4 const getMessages = function unreadCount() { 4 const getMessages = function unreadCount() {
@@ -14,8 +14,8 @@ module.exports = Ferdi => {
14 } 14 }
15 } 15 }
16 16
17 Ferdi.setBadge(directCount, indirectCount); 17 Ferdium.setBadge(directCount, indirectCount);
18 }; 18 };
19 19
20 Ferdi.loop(getMessages); 20 Ferdium.loop(getMessages);
21}; 21};