From b9baea250e5d8b26c597feff800de9ec903c50df Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Tue, 14 Nov 2023 17:44:33 -0500 Subject: [PATCH] Fix bug that could impact translation --- src/helpers/translate.ts | 2 +- src/worker.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/helpers/translate.ts b/src/helpers/translate.ts index 4e88de5..9438e6b 100644 --- a/src/helpers/translate.ts +++ b/src/helpers/translate.ts @@ -52,7 +52,7 @@ export const translateTweet = async ( } try { - const url = `${Constants.TWITTER_ROOT}/i/api/1.1/strato/column/None/tweetId=${tweet.rest_id},destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`; + const url = `${Constants.TWITTER_ROOT}/i/api/1.1/strato/column/None/tweetId=${tweet.rest_id ?? tweet.legacy?.id_str},destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`; console.log(url, headers); translationApiResponse = (await withTimeout( (signal: AbortSignal) => diff --git a/src/worker.ts b/src/worker.ts index 6a24d22..1aaf6e0 100644 --- a/src/worker.ts +++ b/src/worker.ts @@ -114,6 +114,7 @@ app.use('*', async (c, next) => { console.log(`🌐 ${c.req.header('x-real-ip') ?? ''}`); } console.log('🕵️‍♂️', c.req.header('user-agent')); + console.log('------------------') await next(); });