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

  Ferdium.loop(getMessages);
};