aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/vk/webview.js
blob: decec13b5874de1a6d1c83907fdb92c0d45c4d0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = Ferdi => {
  const getMessages = () => {
    let directs = 0;
    const element = document.querySelectorAll('.left_count');
    if (element.length > 0) {
      directs = Ferdi.safeParseInt(element[0].textContent);
    }

    Ferdi.setBadge(directs);
  };

  Ferdi.loop(getMessages);
};