aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/habitica/webview.js
blob: c856fcad4f0448e9cb57c8737ae7281e33152951 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = (Ferdi) => {
  const getMessages = () => {
    let count = 0;
    const element = document.querySelector('.message-count');
    if (element) {
      count = Ferdi.safeParseInt(element.innerText);
    }
    Ferdi.setBadge(count);
  };

  Ferdi.loop(getMessages);
};