mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Hopefully fix Sentry/3488727182
This commit is contained in:
parent
081932018e
commit
6acbb2db1c
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ export const fetchUsingGuest = async (
|
|||
let activate: Response | null = null;
|
||||
|
||||
if (!newTokenGenerated) {
|
||||
const cachedResponse = await cache.match(guestTokenRequestCacheDummy);
|
||||
const cachedResponse = await cache.match(guestTokenRequestCacheDummy.clone());
|
||||
|
||||
if (cachedResponse) {
|
||||
console.log('Token cache hit');
|
||||
|
@ -157,7 +157,7 @@ export const fetchUsingGuest = async (
|
|||
}
|
||||
});
|
||||
console.log('Caching guest token');
|
||||
event.waitUntil(cache.put(guestTokenRequestCacheDummy, cachingResponse));
|
||||
event.waitUntil(cache.put(guestTokenRequestCacheDummy.clone(), cachingResponse));
|
||||
}
|
||||
conversation.guestToken = guestToken;
|
||||
return conversation;
|
||||
|
|
Loading…
Add table
Reference in a new issue