Catch if saving response cache fails

This commit is contained in:
dangered wolf 2022-08-18 01:25:48 -04:00
parent 45da5e3ecb
commit 8b4b9afca3
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -287,7 +287,11 @@ export const cacheWrapper = async (
/* Store the fetched response as cacheKey
Use waitUntil so you can return the response without blocking on
writing to cache */
event && event.waitUntil(cache.put(cacheKey, response.clone()));
try {
event && event.waitUntil(cache.put(cacheKey, response.clone()));
} catch (error) {
console.error((error as Error).stack);
}
return response;
/* Telegram sends this from Webpage Bot, and Cloudflare sends it if we purge cache, and we respect it.