Fixed lower resolution avatars being used

This commit is contained in:
dangered wolf 2023-08-18 03:42:36 -04:00
parent 116a36170f
commit 35aee05be4
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -289,16 +289,15 @@ export const handleStatus = async (
/* If we have no media to display, instead we'll display the user profile picture in the embed */
if (!tweet.media?.videos && !tweet.media?.photos && !flags?.textOnly) {
const avatar = tweet.author.avatar_url?.replace('_200x200', '_normal');
/* Use a slightly higher resolution image for profile pics */
const avatar = tweet.author.avatar_url;
if (!useIV) {
headers.push(
/* Use a slightly higher resolution image for profile pics */
`<meta property="og:image" content="${avatar}"/>`,
`<meta property="twitter:image" content="0"/>`
);
} else {
headers.push(
/* Use a slightly higher resolution image for profile pics */
`<meta property="twitter:image" content="${avatar}"/>`
);
}