mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Accept extended language codes (#580)
This commit is contained in:
parent
3960618932
commit
a03995a959
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ export const buildAPITwitterStatus = async (
|
|||
console.log('language?', language);
|
||||
|
||||
/* If a language is specified in API or by user, let's try translating it! */
|
||||
if (typeof language === 'string' && language.length === 2 && language !== status.legacy.lang) {
|
||||
if (typeof language === 'string' && (language.length === 2 || language.length === 5) && language !== status.legacy.lang) {
|
||||
console.log(`Attempting to translate status to ${language}...`);
|
||||
const translateAPI = await translateStatus(status, '', language, c);
|
||||
if (translateAPI !== null && translateAPI?.translation) {
|
||||
|
|
Loading…
Add table
Reference in a new issue