mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Fix said crash safety
This commit is contained in:
parent
7dac72df79
commit
ebb5e5e60d
1 changed files with 12 additions and 12 deletions
24
src/fetch.ts
24
src/fetch.ts
|
@ -223,20 +223,20 @@ export const twitterFetch = async (
|
||||||
newTokenGenerated = true;
|
newTokenGenerated = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
/* If we've generated a new token, we'll cache it */
|
try {
|
||||||
if (c.executionCtx && newTokenGenerated && activate) {
|
/* If we've generated a new token, we'll cache it */
|
||||||
const cachingResponse = new Response(await activate.clone().text(), {
|
if (c.executionCtx && newTokenGenerated && activate) {
|
||||||
headers: {
|
const cachingResponse = new Response(await activate.clone().text(), {
|
||||||
...tokenHeaders,
|
headers: {
|
||||||
'cache-control': `max-age=${Constants.GUEST_TOKEN_MAX_AGE}`
|
...tokenHeaders,
|
||||||
}
|
'cache-control': `max-age=${Constants.GUEST_TOKEN_MAX_AGE}`
|
||||||
});
|
}
|
||||||
console.log('Caching guest token');
|
});
|
||||||
try {
|
console.log('Caching guest token');
|
||||||
c.executionCtx.waitUntil(cache.put(guestTokenRequestCacheDummy.clone(), cachingResponse));
|
c.executionCtx.waitUntil(cache.put(guestTokenRequestCacheDummy.clone(), cachingResponse));
|
||||||
} catch (error) {
|
|
||||||
console.error((error as Error).stack);
|
|
||||||
}
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error((error as Error).stack);
|
||||||
}
|
}
|
||||||
|
|
||||||
// @ts-expect-error - We'll pin the guest token to whatever response we have
|
// @ts-expect-error - We'll pin the guest token to whatever response we have
|
||||||
|
|
Loading…
Add table
Reference in a new issue