aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/iris-messenger/webview.js
blob: a3f72c7c81bb5252e75fb143cfda428d7e69e1f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = Ferdi => {
  const getMessages = () => {
    let count = 0;
    const element = document.querySelector('.unseen-total');
    if (element) {
      count = Ferdi.safeParseInt(element.textContent);
    }
    Ferdi.setBadge(count);
  };
  Ferdi.loop(getMessages);
};