diff --git a/README.md b/README.md index 96bc3ed..cc0bfa0 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ On a different note, if the person who posted a FxTwitter link forgot to strip t In many ways, FxTwitter has richer embeds and does more. Here's a table comparing some of FxTwitter's features compared to Twitter default embeds as well as other embedding services -| | FxTwitter | Twitter default | vxTwitter (BetterTwitFix) | +| | FxTwitter | Twitter default | vxTwitter (BetterTwitFix) | | -------------------------------------- | :------------------------------------------------: | :------------------------------: | :-------------------------------------------------: | | Embed Posts / Images | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | Embed profile pictures on text posts | :heavy_check_mark: | :x: | :heavy_check_mark: | diff --git a/src/embed/status.ts b/src/embed/status.ts index d51b7fd..caa9cd9 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -311,7 +311,7 @@ export const handleStatus = async ( ); headers.push(...instructions.addHeaders); } - if (status.media?.external && !(status.media.videos?.length)) { + if (status.media?.external && !status.media.videos?.length) { const { external } = status.media; authorText = newText || ''; headers.push( @@ -330,8 +330,6 @@ export const handleStatus = async ( } } - - /* This status contains a poll, so we'll render it */ if (status.poll) { const { poll } = status; @@ -455,7 +453,10 @@ export const handleStatus = async ( status: encodeURIComponent(statusId), author: encodeURIComponent(status.author.screen_name || ''), name: status.author.name || '', - provider: (status.embed_card === 'player' && providerEngagementText !== Strings.DEFAULT_AUTHOR_TEXT) ? `&provider=${encodeURIComponent(providerEngagementText)}` : '' + provider: + status.embed_card === 'player' && providerEngagementText !== Strings.DEFAULT_AUTHOR_TEXT + ? `&provider=${encodeURIComponent(providerEngagementText)}` + : '' } ) ); diff --git a/src/providers/twitter/processor.ts b/src/providers/twitter/processor.ts index f2cded2..f6e29c3 100644 --- a/src/providers/twitter/processor.ts +++ b/src/providers/twitter/processor.ts @@ -261,7 +261,11 @@ 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.length === 5) && 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) {