mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fixed lower resolution avatars being used
This commit is contained in:
parent
116a36170f
commit
35aee05be4
1 changed files with 2 additions and 3 deletions
|
@ -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}"/>`
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue