mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Always put content last in <meta> tag
This commit is contained in:
parent
f36ae739a5
commit
c2327b5dd7
1 changed files with 6 additions and 6 deletions
|
@ -10,8 +10,8 @@ export const returnError = (error: string): StatusResponse => {
|
|||
text: Strings.BASE_HTML.format({
|
||||
lang: '',
|
||||
headers: [
|
||||
`<meta content="${Constants.BRANDING_NAME}" property="og:title"/>`,
|
||||
`<meta content="${error}" property="og:description"/>`
|
||||
`<meta property="og:title" content="${Constants.BRANDING_NAME}"/>`,
|
||||
`<meta property="og:description" content="${error}"/>`
|
||||
].join('')
|
||||
})
|
||||
};
|
||||
|
@ -84,7 +84,7 @@ export const handleStatus = async (
|
|||
|
||||
/* Base headers included in all responses */
|
||||
const headers = [
|
||||
`<meta content="${tweet.color}" property="theme-color"/>`,
|
||||
`<meta property="theme-color" content="${tweet.color}"/>`,
|
||||
`<meta name="twitter:card" content="${tweet.twitter_card}"/>`,
|
||||
`<meta name="twitter:site" content="@${tweet.author.screen_name}"/>`,
|
||||
`<meta name="twitter:creator" content="@${tweet.author.screen_name}"/>`,
|
||||
|
@ -300,9 +300,9 @@ export const handleStatus = async (
|
|||
|
||||
/* Push basic headers relating to author, Tweet text, and site name */
|
||||
headers.push(
|
||||
`<meta content="${tweet.author.name} (@${tweet.author.screen_name})" property="og:title"/>`,
|
||||
`<meta content="${sanitizeText(newText)}" property="og:description"/>`,
|
||||
`<meta content="${siteName}" property="og:site_name"/>`
|
||||
`<meta property="og:title" content="${tweet.author.name} (@${tweet.author.screen_name})"/>`,
|
||||
`<meta property="og:description" content="${sanitizeText(newText)}"/>`,
|
||||
`<meta property="og:site_name" content="${siteName}"/>`
|
||||
);
|
||||
|
||||
/* Special reply handling if authorText is not overriden */
|
||||
|
|
Loading…
Add table
Reference in a new issue