From ecaef5f6f84082e767f437222e90b38bcfdacfb8 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 22 Sep 2022 21:12:32 -0400 Subject: [PATCH] Consistently use meta property (fix #84) --- src/status.ts | 46 +++++++++++++++++++++++----------------------- src/strings.ts | 6 +++--- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/src/status.ts b/src/status.ts index 60d7333..e01dad1 100644 --- a/src/status.ts +++ b/src/status.ts @@ -85,10 +85,10 @@ export const handleStatus = async ( /* Base headers included in all responses */ const headers = [ ``, - ``, - ``, - ``, - `` + ``, + ``, + ``, + `` ]; /* This little thing ensures if by some miracle a FixTweet embed is loaded in a browser, @@ -171,15 +171,15 @@ export const handleStatus = async ( /* Push the raw video-related headers */ headers.push( - ``, - ``, - ``, - ``, - ``, - ``, - ``, - ``, - `` + ``, + ``, + ``, + ``, + ``, + ``, + ``, + ``, + `` ); } @@ -220,16 +220,16 @@ export const handleStatus = async ( /* Push the raw photo-related headers */ headers.push( - ``, - `` + ``, + `` ); if (!tweet.media.mosaic) { headers.push( - ``, - ``, - ``, - `` + ``, + ``, + ``, + `` ); } } @@ -239,9 +239,9 @@ export const handleStatus = async ( const { external } = tweet.media; authorText = newText || ''; headers.push( - ``, - ``, - ``, + ``, + ``, + ``, ``, ``, ``, @@ -289,7 +289,7 @@ export const handleStatus = async ( '_normal', '_200x200' )}"/>`, - `` + `` ); } diff --git a/src/strings.ts b/src/strings.ts index 1d03559..5567f61 100644 --- a/src/strings.ts +++ b/src/strings.ts @@ -129,9 +129,9 @@ This is caused by Twitter API downtime or a new bug. Try again in a little while .replace(/>[\s|\n]+<'), DEFAULT_AUTHOR_TEXT: 'Twitter', - QUOTE_TEXT: `═ ↘️ Quoting {name} (@{screen_name}) ═════`, - TRANSLATE_TEXT: `═ ↘️ Translated from {language} ═════`, - TRANSLATE_TEXT_INTL: `═ ↘️ {source} ➡️ {destination} ═════`, + QUOTE_TEXT: `↘️ Quoting {name} (@{screen_name})`, + TRANSLATE_TEXT: `↘️ Translated from {language}`, + TRANSLATE_TEXT_INTL: `↘️ {source} ➡️ {destination}`, PHOTO_COUNT: `Photo {number} of {total}`, VIDEO_COUNT: `Video {number} of {total}`,