From b841fc6013c5e809e48b9b8a9545ee02f4038931 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Tue, 2 Jan 2024 19:48:08 -0500 Subject: [PATCH] Add comment about languages --- src/helpers/translate.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helpers/translate.ts b/src/helpers/translate.ts index 15a6df5..687bf83 100644 --- a/src/helpers/translate.ts +++ b/src/helpers/translate.ts @@ -31,6 +31,7 @@ export const translateStatus = async ( /* Clean up language codes so we can use them with Twitter API */ switch (language) { + /* Twitter does not accept plain zh, requires either zh-cn or zh-tw. https://github.com/FixTweet/FxTwitter/issues/580 */ case 'zh': case 'cn': language = 'zh-cn';