1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00
This commit is contained in:
zumbiepig
2024-08-19 14:07:21 -07:00
parent 84d93bf7c0
commit adcb2d5bdd
2 changed files with 6 additions and 6 deletions

View File

@@ -16,8 +16,8 @@ self.addEventListener('install', (event) => {
const clients = await self.clients.matchAll();
clients.forEach((client) => {
client.postMessage({
type: 'sw-install-progress',
msg: progress,
title: 'sw-install-progress',
message: progress,
});
});
}
@@ -45,7 +45,7 @@ self.addEventListener('activate', (event) => {
return self.clients.matchAll().then((clients) => {
clients.forEach((client) => {
client.postMessage({
type: 'sw-activation-complete',
title: 'sw-install-complete',
});
});
});