From c2327b5dd7a51e5d47ea8c18d27dba12698d1d57 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 22 Sep 2022 21:00:49 -0400 Subject: [PATCH] Always put content last in tag --- src/status.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/status.ts b/src/status.ts index dcec5ae..60d7333 100644 --- a/src/status.ts +++ b/src/status.ts @@ -10,8 +10,8 @@ export const returnError = (error: string): StatusResponse => { text: Strings.BASE_HTML.format({ lang: '', headers: [ - ``, - `` + ``, + `` ].join('') }) }; @@ -84,7 +84,7 @@ export const handleStatus = async ( /* Base headers included in all responses */ const headers = [ - ``, + ``, ``, ``, ``, @@ -300,9 +300,9 @@ export const handleStatus = async ( /* Push basic headers relating to author, Tweet text, and site name */ headers.push( - ``, - ``, - `` + ``, + ``, + `` ); /* Special reply handling if authorText is not overriden */