mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Run prettier
This commit is contained in:
parent
4bd2c7b9c8
commit
ae8417cd71
5 changed files with 23 additions and 24 deletions
|
@ -138,8 +138,7 @@ export const twitterFetch = async (
|
||||||
if (useElongator && typeof c.env?.TwitterProxy !== 'undefined') {
|
if (useElongator && typeof c.env?.TwitterProxy !== 'undefined') {
|
||||||
console.log('Fetching using elongator');
|
console.log('Fetching using elongator');
|
||||||
const performanceStart = performance.now();
|
const performanceStart = performance.now();
|
||||||
apiRequest = await withTimeout(
|
apiRequest = await withTimeout((signal: AbortSignal) =>
|
||||||
(signal: AbortSignal) =>
|
|
||||||
c.env?.TwitterProxy.fetch(url, {
|
c.env?.TwitterProxy.fetch(url, {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: headers,
|
headers: headers,
|
||||||
|
|
|
@ -64,8 +64,7 @@ export const translateStatus = async (
|
||||||
tweet.rest_id ?? tweet.legacy?.id_str
|
tweet.rest_id ?? tweet.legacy?.id_str
|
||||||
},destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`;
|
},destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`;
|
||||||
console.log(url, headers);
|
console.log(url, headers);
|
||||||
translationApiResponse = (await withTimeout(
|
translationApiResponse = (await withTimeout((signal: AbortSignal) =>
|
||||||
(signal: AbortSignal) =>
|
|
||||||
c.env?.TwitterProxy.fetch(url, {
|
c.env?.TwitterProxy.fetch(url, {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: headers,
|
headers: headers,
|
||||||
|
|
|
@ -10,7 +10,8 @@ import { twitter } from './realms/twitter/router';
|
||||||
import { cacheMiddleware } from './caches';
|
import { cacheMiddleware } from './caches';
|
||||||
|
|
||||||
const noCache = 'max-age=0, no-cache, no-store, must-revalidate';
|
const noCache = 'max-age=0, no-cache, no-store, must-revalidate';
|
||||||
const embeddingClientRegex = /(discordbot|telegrambot|facebook|whatsapp|firefox\/92|vkshare|revoltchat|preview)/gi;
|
const embeddingClientRegex =
|
||||||
|
/(discordbot|telegrambot|facebook|whatsapp|firefox\/92|vkshare|revoltchat|preview)/gi;
|
||||||
|
|
||||||
/* This is the root app which contains route trees for multiple "realms".
|
/* This is the root app which contains route trees for multiple "realms".
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue