mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Improve gallery mode for Telegram
This commit is contained in:
parent
95200b3f65
commit
c54c306b7e
1 changed files with 9 additions and 3 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue