aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/infomaniak-mail/webview.js
blob: 235a14d7c538a4845cbe97c9664334a323f20f2f (plain) (blame)
1
2
3
4
5
6
7
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);
};