Improve gallery mode for Telegram

This commit is contained in:
dangered wolf 2023-11-15 15:16:03 -05:00
parent 95200b3f65
commit c54c306b7e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -413,9 +413,15 @@ export const handleStatus = async (
`<meta property="og:site_name" content="${siteName}"/>`,
);
} else {
headers.push(
`<meta property="og:title" content="${tweet.author.name}"/>`
)
if (isTelegram) {
headers.push(
`<meta property="og:site_name" content="${tweet.author.name}"/>`
)
} else {
headers.push(
`<meta property="og:title" content="${tweet.author.name}"/>`
)
}
}
/* Special reply handling if authorText is not overriden */