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

@ -412,11 +412,17 @@ export const handleStatus = async (
`<meta property="og:description" content="${text}"/>`, `<meta property="og:description" content="${text}"/>`,
`<meta property="og:site_name" content="${siteName}"/>`, `<meta property="og:site_name" content="${siteName}"/>`,
); );
} else {
if (isTelegram) {
headers.push(
`<meta property="og:site_name" content="${tweet.author.name}"/>`
)
} else { } else {
headers.push( headers.push(
`<meta property="og:title" content="${tweet.author.name}"/>` `<meta property="og:title" content="${tweet.author.name}"/>`
) )
} }
}
/* Special reply handling if authorText is not overriden */ /* Special reply handling if authorText is not overriden */
if (tweet.replying_to && authorText === Strings.DEFAULT_AUTHOR_TEXT) { if (tweet.replying_to && authorText === Strings.DEFAULT_AUTHOR_TEXT) {