aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/clubhouse
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/clubhouse')
-rw-r--r--recipes/clubhouse/package.json2
-rw-r--r--recipes/clubhouse/webview.js4
2 files changed, 2 insertions, 4 deletions
diff --git a/recipes/clubhouse/package.json b/recipes/clubhouse/package.json
index 847ffcc..1fe2000 100644
--- a/recipes/clubhouse/package.json
+++ b/recipes/clubhouse/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "clubhouse", 2 "id": "clubhouse",
3 "name": "Clubhouse", 3 "name": "Clubhouse",
4 "version": "1.0.3", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/dnlnrs/ferdi-recipe-clubhouse", 6 "repository": "https://github.com/dnlnrs/ferdi-recipe-clubhouse",
7 "config": { 7 "config": {
diff --git a/recipes/clubhouse/webview.js b/recipes/clubhouse/webview.js
index 9b2b782..be02ac0 100644
--- a/recipes/clubhouse/webview.js
+++ b/recipes/clubhouse/webview.js
@@ -1,9 +1,7 @@
1module.exports = (Ferdi) => { 1module.exports = (Ferdi) => {
2 function getMessages() { 2 function getMessages() {
3 const hasNotifications = document.querySelector('#notifications-link .badge').classList.contains('visible'); 3 const hasNotifications = document.querySelector('#notifications-link .badge').classList.contains('visible');
4 if (hasNotifications) { 4 Ferdi.setBadge(0, hasNotifications ? 1 : 0);
5 Ferdi.setBadge(0, 1);
6 }
7 } 5 }
8 6
9 Ferdi.loop(getMessages); 7 Ferdi.loop(getMessages);