aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/hey
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/hey')
-rw-r--r--recipes/hey/package.json2
-rw-r--r--recipes/hey/webview.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/hey/package.json b/recipes/hey/package.json
index e3bc1e2..090dbaa 100644
--- a/recipes/hey/package.json
+++ b/recipes/hey/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "hey", 2 "id": "hey",
3 "name": "Hey", 3 "name": "Hey",
4 "version": "1.1.0", 4 "version": "1.1.1",
5 "repository": "https://github.com/cpwood/recipe-hey", 5 "repository": "https://github.com/cpwood/recipe-hey",
6 "config": { 6 "config": {
7 "serviceURL": "https://app.hey.com", 7 "serviceURL": "https://app.hey.com",
diff --git a/recipes/hey/webview.js b/recipes/hey/webview.js
index d92490b..d0b885a 100644
--- a/recipes/hey/webview.js
+++ b/recipes/hey/webview.js
@@ -19,7 +19,7 @@ module.exports = Ferdium => {
19 for (const p of postings) { 19 for (const p of postings) {
20 if ( 20 if (
21 p.nodeName == 'ARTICLE' && 21 p.nodeName == 'ARTICLE' &&
22 p.getAttribute('data-seen') !== 'true' 22 p.dataset.seen !== 'true'
23 ) { 23 ) {
24 unread++; 24 unread++;
25 } 25 }