mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Catch if saving response cache fails
This commit is contained in:
parent
45da5e3ecb
commit
8b4b9afca3
1 changed files with 5 additions and 1 deletions
|
@ -287,7 +287,11 @@ export const cacheWrapper = async (
|
||||||
/* Store the fetched response as cacheKey
|
/* Store the fetched response as cacheKey
|
||||||
Use waitUntil so you can return the response without blocking on
|
Use waitUntil so you can return the response without blocking on
|
||||||
writing to cache */
|
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;
|
return response;
|
||||||
/* Telegram sends this from Webpage Bot, and Cloudflare sends it if we purge cache, and we respect it.
|
/* Telegram sends this from Webpage Bot, and Cloudflare sends it if we purge cache, and we respect it.
|
||||||
|
|
Loading…
Add table
Reference in a new issue