This commit is contained in:
thrhymes
2025-12-24 21:38:27 +01:00
parent 354e897e55
commit e1bda360f4
5 changed files with 26 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
const CACHE = "wfw-aushang-2025.12.24.6";
const CACHE = "wfw-aushang-2025.12.24.8";
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.6"}', { headers: { "Content-Type": "application/json" } });
return cached || new Response('{"version":"2025.12.24.8"}', { headers: { "Content-Type": "application/json" } });
}
})());
return;