mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Run prettier
This commit is contained in:
parent
3d24c45b7e
commit
1241dabc00
2 changed files with 3 additions and 5 deletions
|
@ -73,7 +73,7 @@ In many ways, pxTwitter has richer embeds and does more. Here's a table comparin
|
|||
| Redirect to media file (wihout embed) | :heavy_check_mark: | :x: | :x: | :heavy_check_mark: |
|
||||
| Strip Twitter tracking info on redirect | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: |
|
||||
| Show retweet / like counts | Coming soon to Discord | :x: | :heavy_check_mark: | :heavy_check_mark: |
|
||||
| Discord / sed (`s/` replace) friendly | twittpr.com | :x: | :x: | :heavy_check_mark: |
|
||||
| Discord / sed (`s/` replace) friendly | twittpr.com | :x: | :x: | :heavy_check_mark: |
|
||||
|
||||
¹ Discord will attempt to embed Twitter's video player, but it is unreliable
|
||||
|
||||
|
|
|
@ -134,7 +134,7 @@ const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
|
|||
const cacheKey = new Request(cacheUrl.toString(), request);
|
||||
const cache = caches.default;
|
||||
|
||||
switch(request.method) {
|
||||
switch (request.method) {
|
||||
case 'GET':
|
||||
let cachedResponse = await cache.match(cacheKey);
|
||||
|
||||
|
@ -167,15 +167,13 @@ const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
|
|||
case 'OPTIONS':
|
||||
return new Response('', {
|
||||
headers: {
|
||||
'allow': Constants.RESPONSE_HEADERS.allow
|
||||
allow: Constants.RESPONSE_HEADERS.allow
|
||||
},
|
||||
status: 204
|
||||
});
|
||||
default:
|
||||
return new Response('', { status: 405 });
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue