Add @usernames to gallery view (fix #462)

This commit is contained in:
dangered wolf 2023-11-16 20:44:30 -05:00
parent 06e11ebb0d
commit 77b7ad5b3d
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -415,11 +415,11 @@ export const handleStatus = async (
} else { } else {
if (isTelegram) { if (isTelegram) {
headers.push( headers.push(
`<meta property="og:site_name" content="${tweet.author.name}"/>` `<meta property="og:site_name" content="${tweet.author.name} (@${tweet.author.screen_name})"/>`
) )
} else { } else {
headers.push( headers.push(
`<meta property="og:title" content="${tweet.author.name}"/>` `<meta property="og:title" content="${tweet.author.name} (@${tweet.author.screen_name})"/>`
) )
} }
} }