aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/hey
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2023-02-13 06:44:28 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2023-02-13 06:49:51 +0530
commitd8399ea0f1940d6483bfef59e3eb94ba41137b12 (patch)
treee9b58bcbb46c21784ed46b20d5c8481828deb39a /recipes/hey
parentfix #936: Rectify serviceUrls for known problematic services (diff)
downloadferdium-recipes-d8399ea0f1940d6483bfef59e3eb94ba41137b12.tar.gz
ferdium-recipes-d8399ea0f1940d6483bfef59e3eb94ba41137b12.tar.zst
ferdium-recipes-d8399ea0f1940d6483bfef59e3eb94ba41137b12.zip
Upgrade 'pnpm' to '7.27.0'; Upgrade other npm modules and fix errors
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 }