mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix borked guest token caching in workers runtime
This commit is contained in:
parent
c2a617d804
commit
01b3b8d79b
1 changed files with 7 additions and 1 deletions
|
@ -150,8 +150,14 @@ export const fetchUsingGuest = async (
|
||||||
}
|
}
|
||||||
/* If we've generated a new token, we'll cache it */
|
/* If we've generated a new token, we'll cache it */
|
||||||
if (event && newTokenGenerated) {
|
if (event && newTokenGenerated) {
|
||||||
|
const cachingResponse = new Response(await activate.clone().text(), {
|
||||||
|
headers: {
|
||||||
|
...tokenHeaders,
|
||||||
|
'cache-control': 'max-age=300'
|
||||||
|
}
|
||||||
|
});
|
||||||
console.log('Caching guest token');
|
console.log('Caching guest token');
|
||||||
event.waitUntil(cache.put(guestTokenRequestCacheDummy, activate.clone()));
|
event.waitUntil(cache.put(guestTokenRequestCacheDummy, cachingResponse));
|
||||||
}
|
}
|
||||||
conversation.guestToken = guestToken;
|
conversation.guestToken = guestToken;
|
||||||
return conversation;
|
return conversation;
|
||||||
|
|
Loading…
Add table
Reference in a new issue