aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/misskey/webview.js
blob: 65fa237e9b3c207bfc47bd7f939f9e75b02ff746 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = Ferdi => {
  const getMessages = () => {
    // check notification badge for Ferdi badge
    let hasNotification = !!document.querySelector(
      '#app div.notifications > button > i.circle',
    );
    Ferdi.setBadge(0, hasNotification ? 1 : 0);
  };

  Ferdi.loop(getMessages);
};