aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/redditchat
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/redditchat')
-rw-r--r--recipes/redditchat/index.js2
-rw-r--r--recipes/redditchat/package.json2
-rw-r--r--recipes/redditchat/webview.js6
3 files changed, 5 insertions, 5 deletions
diff --git a/recipes/redditchat/index.js b/recipes/redditchat/index.js
index 23607bd..dd41f72 100644
--- a/recipes/redditchat/index.js
+++ b/recipes/redditchat/index.js
@@ -1 +1 @@
module.exports = Ferdi => Ferdi; module.exports = Ferdium => Ferdium;
diff --git a/recipes/redditchat/package.json b/recipes/redditchat/package.json
index 3d95f18..ae79ca7 100644
--- a/recipes/redditchat/package.json
+++ b/recipes/redditchat/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "redditchat", 2 "id": "redditchat",
3 "name": "Reddit Chat", 3 "name": "Reddit Chat",
4 "version": "1.1.0", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://www.reddit.com/chat/" 7 "serviceURL": "https://www.reddit.com/chat/"
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};