aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/NewsBlur/webview.js
blob: 15704f4c5362f6552680e28b4ff483e417016e90 (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);
};