aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/feedly/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/feedly/webview.js')
-rw-r--r--recipes/feedly/webview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/feedly/webview.js b/recipes/feedly/webview.js
index c1108ff..b4887bc 100644
--- a/recipes/feedly/webview.js
+++ b/recipes/feedly/webview.js
@@ -1,4 +1,4 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const newsDOM = document.querySelectorAll( 3 const newsDOM = document.querySelectorAll(
4 "div[title='All'] > .LeftnavListRow__count", 4 "div[title='All'] > .LeftnavListRow__count",
@@ -9,11 +9,11 @@ module.exports = Ferdi => {
9 if (newsDOM && newsDOM.length > 0) { 9 if (newsDOM && newsDOM.length > 0) {
10 const textContent = newsDOM[0].textContent; 10 const textContent = newsDOM[0].textContent;
11 11
12 counter = textContent.includes('K') || textContent.includes('+') ? `${textContent.slice(0, Math.max(0, textContent.indexOf('K')))}000` : Ferdi.safeParseInt(textContent); 12 counter = textContent.includes('K') || textContent.includes('+') ? `${textContent.slice(0, Math.max(0, textContent.indexOf('K')))}000` : Ferdium.safeParseInt(textContent);
13 } 13 }
14 14
15 Ferdi.setBadge(counter); 15 Ferdium.setBadge(counter);
16 }; 16 };
17 17
18 Ferdi.loop(getMessages); 18 Ferdium.loop(getMessages);
19}; 19};