aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/udemy/webview.js
blob: 6120e54cba3eedfaffd48fe67bb148fddfd3f081 (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = (Ferdi) => {
  const getMessages = () => {
    let direct = 0;
    let indirect = 0;
    Ferdi.setBadge(direct, indirect);
  }

  Ferdi.loop(getMessages);
}