aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/infomaniak-mail/webview.js
blob: 71a022b876020d132136727f28865ff160d299fd (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)
}