aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/canvas/webview.js
blob: a70f44882b78a785136d11828567dcd074fa133f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = Ferdi => {
  const getMessages = () => {
    let direct = 0;

    const MessageElement = document.querySelector('[id=global_nav_conversations_link]');
    if (MessageElement) {
      direct += Ferdi.safeParseInt(MessageElement.innerHTML);
    }

    Ferdi.setBadge(direct);
  };

  Ferdi.loop(getMessages);
};