aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/redditchat
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/redditchat')
-rw-r--r--recipes/redditchat/index.js3
-rw-r--r--recipes/redditchat/package.json2
-rw-r--r--recipes/redditchat/webview.js6
3 files changed, 5 insertions, 6 deletions
diff --git a/recipes/redditchat/index.js b/recipes/redditchat/index.js
index 46f936f..23607bd 100644
--- a/recipes/redditchat/index.js
+++ b/recipes/redditchat/index.js
@@ -1,2 +1 @@
1// just pass through Franz module.exports = Ferdi => Ferdi;
2module.exports = Franz => Franz;
diff --git a/recipes/redditchat/package.json b/recipes/redditchat/package.json
index f8f4fc0..3d95f18 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.0.2", 4 "version": "1.1.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 8b29861..7000e53 100644
--- a/recipes/redditchat/webview.js
+++ b/recipes/redditchat/webview.js
@@ -1,4 +1,4 @@
1module.exports = Franz => { 1module.exports = Ferdi => {
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 = Franz => {
14 } 14 }
15 } 15 }
16 16
17 Franz.setBadge(directCount, indirectCount); 17 Ferdi.setBadge(directCount, indirectCount);
18 }; 18 };
19 19
20 Franz.loop(getMessages); 20 Ferdi.loop(getMessages);
21}; 21};