aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/NewsBlur/webview.js
blob: 67e7bbb21af78aa4b34df29cefbdcd75fa9fd69a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
const path = require('path');

module.exports = (Franz, options) => {
  const getMessages = () => {
    const unreadCount = 0;

    Franz.setBadge(unreadCount);
  };

  Franz.loop(getMessages);
};