mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Fix bug that could impact translation
This commit is contained in:
parent
32f3c2a0d8
commit
b9baea250e
2 changed files with 2 additions and 1 deletions
|
@ -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) =>
|
||||
|
|
|
@ -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();
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue