aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/chatwork/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/chatwork/webview.js')
-rw-r--r--recipes/chatwork/webview.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/chatwork/webview.js b/recipes/chatwork/webview.js
index c6465ec..e131093 100644
--- a/recipes/chatwork/webview.js
+++ b/recipes/chatwork/webview.js
@@ -1,4 +1,4 @@
1module.exports = (Franz, options) => { 1module.exports = (Ferdi) => {
2 function getMessages() { 2 function getMessages() {
3 let groupCount = 0; 3 let groupCount = 0;
4 let individualCount = 0; 4 let individualCount = 0;
@@ -29,8 +29,8 @@ module.exports = (Franz, options) => {
29 } 29 }
30 } 30 }
31 }); 31 });
32 Franz.setBadge(directCount, indirectCount); 32 Ferdi.setBadge(directCount, indirectCount);
33 } 33 }
34 34
35 Franz.loop(getMessages); 35 Ferdi.loop(getMessages);
36}; 36};