aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/infomaniak-mail/webview.js
blob: 0022949c2c716e005e180b92c9e5c283acafdfcf (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = Ferdi => {
  function getMessages() {
    const count = document.querySelector('.ws-tree-node-badge').innerText;
    Ferdi.setBadge(count ? Number(count.substring(1, count.length - 1)) : 0);
  }

  Ferdi.loop(getMessages);
};