closed the chapter on close

This commit is contained in:
thrhymes
2025-12-24 22:02:43 +01:00
parent 7fae8dc958
commit e3c69b6188
4 changed files with 15 additions and 8 deletions

View File

@@ -1,9 +1,8 @@
const CACHE = "wfw-aushang-2025.12.24.10";
const CACHE = "wfw-aushang-2025.12.24.11";
const ASSETS = [
"/zuss/",
"/zuss/index.html",
"/zuss/close.html",
"/zuss/app.js",
"/zuss/manifest.webmanifest",
"/zuss/version.json",
@@ -41,7 +40,7 @@ self.addEventListener("fetch", (event) => {
return fresh;
} catch {
const cached = await caches.match(req);
return cached || new Response('{"version":"2025.12.24.10"}', { headers: { "Content-Type": "application/json" } });
return cached || new Response('{"version":"2025.12.24.11"}', { headers: { "Content-Type": "application/json" } });
}
})());
return;