Hopefully fix Sentry/3488727182

This commit is contained in:
dangered wolf 2022-08-18 21:02:24 -04:00
parent 081932018e
commit 6acbb2db1c
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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;