aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/feedbin/webview.js
blob: 5c08892b6c3668263f9048a6191f6f0fea7de3f9 (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = (Ferdi) => {
  const getMessages = () => {
    const count = feedbin.count_data.unread_entries.length || 0;
    Ferdi.setBadge(count);
  }

  Ferdi.loop(getMessages);
};