aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/NewsBlur/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/NewsBlur/webview.js')
-rw-r--r--recipes/NewsBlur/webview.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/recipes/NewsBlur/webview.js b/recipes/NewsBlur/webview.js
new file mode 100644
index 0000000..15704f4
--- /dev/null
+++ b/recipes/NewsBlur/webview.js
@@ -0,0 +1,11 @@
1const path = require('path');
2
3module.exports = (Franz, options) => {
4 const getMessages = () => {
5 const unreadCount = 0;
6
7 Franz.setBadge(unreadCount);
8 }
9
10 Franz.loop(getMessages);
11};