aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/twitter
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/twitter')
-rw-r--r--recipes/twitter/index.js2
-rw-r--r--recipes/twitter/package.json2
-rw-r--r--recipes/twitter/webview.js6
3 files changed, 5 insertions, 5 deletions
diff --git a/recipes/twitter/index.js b/recipes/twitter/index.js
index 258da41..23607bd 100644
--- a/recipes/twitter/index.js
+++ b/recipes/twitter/index.js
@@ -1 +1 @@
module.exports = Franz => Franz; module.exports = Ferdi => Ferdi;
diff --git a/recipes/twitter/package.json b/recipes/twitter/package.json
index 6820f7f..cb840a5 100644
--- a/recipes/twitter/package.json
+++ b/recipes/twitter/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "twitter", 2 "id": "twitter",
3 "name": "Twitter", 3 "name": "Twitter",
4 "version": "1.1.3", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/getferdi/recipes", 6 "repository": "https://github.com/getferdi/recipes",
7 "config": { 7 "config": {
diff --git a/recipes/twitter/webview.js b/recipes/twitter/webview.js
index 03b2b2d..39a704e 100644
--- a/recipes/twitter/webview.js
+++ b/recipes/twitter/webview.js
@@ -1,4 +1,4 @@
1module.exports = Franz => { 1module.exports = Ferdi => {
2 const getMessages = () => { 2 const getMessages = () => {
3 let direct = 0; 3 let direct = 0;
4 4
@@ -13,8 +13,8 @@ module.exports = Franz => {
13 direct += DMElement.innerHTML; 13 direct += DMElement.innerHTML;
14 } 14 }
15 15
16 Franz.setBadge(direct); 16 Ferdi.setBadge(direct);
17 }; 17 };
18 18
19 Franz.loop(getMessages); 19 Ferdi.loop(getMessages);
20}; 20};