aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/feedbin/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/feedbin/webview.js')
-rw-r--r--recipes/feedbin/webview.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/feedbin/webview.js b/recipes/feedbin/webview.js
index 56ffd3c..a5c9b7b 100644
--- a/recipes/feedbin/webview.js
+++ b/recipes/feedbin/webview.js
@@ -1,8 +1,8 @@
1module.exports = (Franz, options) => { 1module.exports = (Ferdi) => {
2 function getMessages() { 2 function getMessages() {
3 const count = feedbin.count_data.unread_entries.length || 0; 3 const count = feedbin.count_data.unread_entries.length || 0;
4 Franz.setBadge(count); 4 Ferdi.setBadge(count);
5 } 5 }
6 6
7 Franz.loop(getMessages); 7 Ferdi.loop(getMessages);
8}; 8};