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

  Ferdi.loop(getMessages);
};