lets see what this does?

This commit is contained in:
thrhymes
2025-12-24 21:56:38 +01:00
parent 89de32ee25
commit 7fae8dc958
4 changed files with 12 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
const CACHE = "wfw-aushang-2025.12.24.9";
const CACHE = "wfw-aushang-2025.12.24.10";
const ASSETS = [
"/zuss/",
@@ -41,7 +41,7 @@ self.addEventListener("fetch", (event) => {
return fresh;
} catch {
const cached = await caches.match(req);
return cached || new Response('{"version":"2025.12.24.9"}', { headers: { "Content-Type": "application/json" } });
return cached || new Response('{"version":"2025.12.24.10"}', { headers: { "Content-Type": "application/json" } });
}
})());
return;