diff --git a/src/api.ts b/src/api.ts index 94571cd..9ca46f1 100644 --- a/src/api.ts +++ b/src/api.ts @@ -123,11 +123,13 @@ const populateTweetProperties = async ( conversation.guestToken || '', language ); - apiTweet.translation = { - text: translateAPI?.translation || '', - source_lang: translateAPI?.sourceLanguage || '', - target_lang: translateAPI?.destinationLanguage || '' - }; + if (translateAPI !== null) { + apiTweet.translation = { + text: translateAPI?.translation || '', + source_lang: translateAPI?.sourceLanguage || '', + target_lang: translateAPI?.destinationLanguage || '' + }; + } } return apiTweet;