Fix bug that could impact translation

This commit is contained in:
dangered wolf 2023-11-14 17:44:33 -05:00
parent 32f3c2a0d8
commit b9baea250e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 2 additions and 1 deletions

View file

@ -52,7 +52,7 @@ export const translateTweet = async (
} }
try { 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); console.log(url, headers);
translationApiResponse = (await withTimeout( translationApiResponse = (await withTimeout(
(signal: AbortSignal) => (signal: AbortSignal) =>

View file

@ -114,6 +114,7 @@ app.use('*', async (c, next) => {
console.log(`🌐 ${c.req.header('x-real-ip') ?? ''}`); console.log(`🌐 ${c.req.header('x-real-ip') ?? ''}`);
} }
console.log('🕵️‍♂️', c.req.header('user-agent')); console.log('🕵️‍♂️', c.req.header('user-agent'));
console.log('------------------')
await next(); await next();
}); });