mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +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.
|
/* We'll usually only hit this if we get an invalid response from Twitter.
|
||||||
It's uncommon, but it happens */
|
It's uncommon, but it happens */
|
||||||
console.error('Unknown error while fetching conversation from API');
|
console.error('Unknown error while fetching conversation from API');
|
||||||
event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy));
|
event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy.clone()));
|
||||||
newTokenGenerated = true;
|
newTokenGenerated = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -135,7 +135,7 @@ export const fetchUsingGuest = async (
|
||||||
/* Running out of requests within our rate limit, let's purge the cache */
|
/* Running out of requests within our rate limit, let's purge the cache */
|
||||||
if (remainingRateLimit < 20) {
|
if (remainingRateLimit < 20) {
|
||||||
console.log(`Purging token on this edge due to low rate limit remaining`);
|
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 (
|
if (
|
||||||
|
|
Loading…
Add table
Reference in a new issue