ServiceWorker: Don't show message via sw if a client is active.

This commit is contained in:
lain 2020-06-11 15:24:01 +02:00
parent 5b0190bef5
commit e2ca107e01

View file

@ -64,7 +64,7 @@ const maybeShowNotification = async (event) => {
const enabled = await isEnabled()
const activeClients = await getWindowClients()
await setLocale()
if (enabled && activeClients) {
if (enabled && (activeClients.length === 0)) {
const data = event.data.json()
const url = `${self.registration.scope}api/v1/notifications/${data.notification_id}`