Prettier & Update README

This commit is contained in:
dangered wolf 2022-07-15 21:17:21 -04:00
parent b25b81db3a
commit 4c71150c6e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 13 additions and 12 deletions

View file

@ -36,7 +36,7 @@ Here's a little chart comparing features to Twitter default embeds and other emb
| Publicly accessible embed index | :x:² | N/A | :x:² | :heavy_check_mark: |
| Replace t.co with original links | :heavy_check_mark: | :x: | :x: | :x: |
| Media-based embed colors on Discord | :heavy_check_mark: | :x: | :x: | :x: |
| Redirect to video file (wihout embed) | Coming soon! | :x: | :x: | :heavy_check_mark: |
| Redirect to media file (wihout embed) | :heavy_check_mark: | :x: | :x: | :heavy_check_mark: |
¹ Discord will attempt to embed Twitter's video player, but it is unreliable

View file

@ -37,7 +37,12 @@ const statusRequest = async (request: any, event: FetchEvent, flags: Flags = {})
console.log('Cache miss');
let status = await handleStatus(id.match(/\d{2,20}/)?.[0], parseInt(mediaNumber || 1), userAgent, flags);
let status = await handleStatus(
id.match(/\d{2,20}/)?.[0],
parseInt(mediaNumber || 1),
userAgent,
flags
);
if (status instanceof Response) {
console.log('handleStatus sent response');
@ -49,13 +54,10 @@ const statusRequest = async (request: any, event: FetchEvent, flags: Flags = {})
}
console.log('handleStatus sent embed');
response = new Response(
status,
{
response = new Response(status, {
headers: Constants.RESPONSE_HEADERS,
status: 200
}
);
});
}
// Store the fetched response as cacheKey

View file

@ -195,7 +195,6 @@ export const handleStatus = async (
pushedCardType = true;
}
} else if (media.type === 'video' || media.type === 'animated_gif') {
// Find the variant with the highest bitrate
let bestVariant = media.video_info?.variants?.reduce?.((a, b) =>
(a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
@ -252,7 +251,7 @@ export const handleStatus = async (
}
if (flags?.direct && redirectMedia) {
let response = Response.redirect(redirectMedia, 302)
let response = Response.redirect(redirectMedia, 302);
console.log(response);
return response;
}