1
0

fix typo in service worker

This commit is contained in:
Adrian Wannenmacher 2026-03-10 23:07:07 +01:00
parent ef502ca522
commit 5317ebee8a
Signed by: tfld
GPG Key ID: 19D986ECB1E492D5

View File

@ -64,7 +64,7 @@ async function getFromCache(request, event) {
}
async function putInCache(request, response) {
const cache = await cache.open(CACHE_NAME);
const cache = await caches.open(CACHE_NAME);
await cache.put(request, response);
}