yay took not long

This commit is contained in:
thrhymes
2025-12-24 22:07:14 +01:00
parent e3c69b6188
commit b7cb257d05
5 changed files with 16 additions and 70 deletions

View File

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