aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/meetup
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/meetup')
-rw-r--r--recipes/meetup/index.js2
-rw-r--r--recipes/meetup/package.json2
-rw-r--r--recipes/meetup/webview.js6
3 files changed, 5 insertions, 5 deletions
diff --git a/recipes/meetup/index.js b/recipes/meetup/index.js
index 1ea918d..dd41f72 100644
--- a/recipes/meetup/index.js
+++ b/recipes/meetup/index.js
@@ -1 +1 @@
module.exports = Ferdi => class Meetup extends Ferdi {}; module.exports = Ferdium => Ferdium;
diff --git a/recipes/meetup/package.json b/recipes/meetup/package.json
index f18c648..42afa9b 100644
--- a/recipes/meetup/package.json
+++ b/recipes/meetup/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "meetup", 2 "id": "meetup",
3 "name": "Meetup", 3 "name": "Meetup",
4 "version": "1.0.1", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://meetup.com", 7 "serviceURL": "https://meetup.com",
diff --git a/recipes/meetup/webview.js b/recipes/meetup/webview.js
index 5d45d55..1ddb5fd 100644
--- a/recipes/meetup/webview.js
+++ b/recipes/meetup/webview.js
@@ -1,8 +1,8 @@
1module.exports = (Ferdi) => { 1module.exports = (Ferdium) => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const hasNotifications = document.querySelector(".counterBadge"); 3 const hasNotifications = document.querySelector(".counterBadge");
4 4
5 Ferdi.setBadge(0, hasNotifications ? 1 : 0); 5 Ferdium.setBadge(0, hasNotifications ? 1 : 0);
6 }; 6 };
7 Ferdi.loop(getMessages); 7 Ferdium.loop(getMessages);
8}; 8};