mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Bugfix, prettier
This commit is contained in:
parent
e95ec915f2
commit
9fe1a2e3c3
2 changed files with 14 additions and 8 deletions
13
src/fetch.ts
13
src/fetch.ts
|
@ -125,7 +125,10 @@ 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.clone(), { ignoreMethod: true }));
|
event &&
|
||||||
|
event.waitUntil(
|
||||||
|
cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true })
|
||||||
|
);
|
||||||
newTokenGenerated = true;
|
newTokenGenerated = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -137,14 +140,16 @@ 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.clone(), { ignoreMethod: true }));
|
event &&
|
||||||
|
event.waitUntil(
|
||||||
|
cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true })
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
typeof conversation.globalObjects === 'undefined' &&
|
typeof conversation.globalObjects === 'undefined' &&
|
||||||
(typeof conversation.errors === 'undefined' ||
|
(typeof conversation.errors === 'undefined' ||
|
||||||
conversation.errors?.[0]?.code ===
|
conversation.errors?.[0]?.code === 239) /* Error 239 = Bad guest token */
|
||||||
239) /* Error 239 = Bad guest token */
|
|
||||||
) {
|
) {
|
||||||
console.log('Failed to fetch conversation, got', conversation);
|
console.log('Failed to fetch conversation, got', conversation);
|
||||||
newTokenGenerated = true;
|
newTokenGenerated = true;
|
||||||
|
|
|
@ -186,15 +186,16 @@ export const handleStatus = async (
|
||||||
/* This Tweet has one or more photos to render */
|
/* This Tweet has one or more photos to render */
|
||||||
if (tweet.media?.photos) {
|
if (tweet.media?.photos) {
|
||||||
const { photos } = tweet.media;
|
const { photos } = tweet.media;
|
||||||
let photo = photos[(mediaNumber || 1) - 1];
|
let photo: APIPhoto | APIMosaicPhoto = photos[(mediaNumber || 1) - 1];
|
||||||
|
|
||||||
/* If there isn't a specified media number and we have a
|
/* If there isn't a specified media number and we have a
|
||||||
mosaic response, we'll render it using mosaic */
|
mosaic response, we'll render it using mosaic */
|
||||||
if (typeof mediaNumber !== 'number' && tweet.media.mosaic) {
|
if (typeof mediaNumber !== 'number' && tweet.media.mosaic) {
|
||||||
photo = {
|
photo = {
|
||||||
|
/* Include dummy height/width for TypeScript reasons. We have a check to make sure we don't use these later. */
|
||||||
|
height: 0,
|
||||||
|
width: 0,
|
||||||
url: tweet.media.mosaic.formats.jpeg,
|
url: tweet.media.mosaic.formats.jpeg,
|
||||||
width: tweet.media.mosaic.width,
|
|
||||||
height: tweet.media.mosaic.height,
|
|
||||||
type: 'photo'
|
type: 'photo'
|
||||||
};
|
};
|
||||||
/* If mosaic isn't available or the link calls for a specific photo,
|
/* If mosaic isn't available or the link calls for a specific photo,
|
||||||
|
@ -220,7 +221,7 @@ export const handleStatus = async (
|
||||||
/* Push the raw photo-related headers */
|
/* Push the raw photo-related headers */
|
||||||
headers.push(
|
headers.push(
|
||||||
`<meta name="twitter:image" content="${photo.url}"/>`,
|
`<meta name="twitter:image" content="${photo.url}"/>`,
|
||||||
`<meta name="og:image" content="${photo.url}"/>`,
|
`<meta name="og:image" content="${photo.url}"/>`
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!tweet.media.mosaic) {
|
if (!tweet.media.mosaic) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue