mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Fixed guest token purging
This commit is contained in:
parent
6b4ab57f17
commit
ad932839c6
1 changed files with 2 additions and 2 deletions
|
@ -123,7 +123,7 @@ export const fetchUsingGuest = async (
|
|||
/* We'll usually only hit this if we get an invalid response from Twitter.
|
||||
It's uncommon, but it happens */
|
||||
console.error('Unknown error while fetching conversation from API');
|
||||
event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy));
|
||||
event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy.clone()));
|
||||
newTokenGenerated = true;
|
||||
continue;
|
||||
}
|
||||
|
@ -135,7 +135,7 @@ export const fetchUsingGuest = async (
|
|||
/* Running out of requests within our rate limit, let's purge the cache */
|
||||
if (remainingRateLimit < 20) {
|
||||
console.log(`Purging token on this edge due to low rate limit remaining`);
|
||||
event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy));
|
||||
event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy.clone()));
|
||||
}
|
||||
|
||||
if (
|
||||
|
|
Loading…
Add table
Reference in a new issue