mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Auto fix common language code issues (i.e. jp not ja)
This commit is contained in:
parent
775d244c7b
commit
85560e90c0
1 changed files with 15 additions and 0 deletions
|
@ -26,6 +26,21 @@ export const translateTweet = async (
|
|||
let translationApiResponse;
|
||||
let translationResults: TranslationPartial;
|
||||
|
||||
/* Fix up some language codes that may be mistakenly used */
|
||||
switch(language) {
|
||||
case 'jp':
|
||||
language = 'ja';
|
||||
break;
|
||||
case 'kr':
|
||||
language = 'ko';
|
||||
break;
|
||||
case 'ua':
|
||||
language = 'uk';
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
headers['x-twitter-client-language'] = language;
|
||||
|
||||
/* As of August 2023, you can no longer fetch translations with guest token */
|
||||
|
|
Loading…
Add table
Reference in a new issue