Run prettier

This commit is contained in:
dangered wolf 2024-01-22 19:35:58 -05:00
parent 4bd2c7b9c8
commit ae8417cd71
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
5 changed files with 23 additions and 24 deletions

View file

@ -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,

View file

@ -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,

View file

@ -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".