Accept extended language codes (#580)

This commit is contained in:
dangered wolf 2024-01-02 19:28:39 -05:00
parent 3960618932
commit a03995a959
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -261,7 +261,7 @@ export const buildAPITwitterStatus = async (
console.log('language?', language); console.log('language?', language);
/* If a language is specified in API or by user, let's try translating it! */ /* 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}...`); console.log(`Attempting to translate status to ${language}...`);
const translateAPI = await translateStatus(status, '', language, c); const translateAPI = await translateStatus(status, '', language, c);
if (translateAPI !== null && translateAPI?.translation) { if (translateAPI !== null && translateAPI?.translation) {