Higher quality Instant View pfp

This commit is contained in:
dangered wolf 2023-08-18 03:49:14 -04:00
parent 35aee05be4
commit c67252505d
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 4 additions and 2 deletions

View file

@ -290,13 +290,15 @@ export const handleStatus = async (
/* If we have no media to display, instead we'll display the user profile picture in the embed */ /* 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) { if (!tweet.media?.videos && !tweet.media?.photos && !flags?.textOnly) {
/* Use a slightly higher resolution image for profile pics */ /* Use a slightly higher resolution image for profile pics */
const avatar = tweet.author.avatar_url; let avatar = tweet.author.avatar_url || '';
if (!useIV) { if (!useIV) {
headers.push( headers.push(
`<meta property="og:image" content="${avatar}"/>`, `<meta property="og:image" content="${avatar}"/>`,
`<meta property="twitter:image" content="0"/>` `<meta property="twitter:image" content="0"/>`
); );
} else { } else {
/* Use higher quality version for IV, which uses a large version of the profile picture */
avatar = avatar.replace('_200x200', '_400x400');
headers.push( headers.push(
`<meta property="twitter:image" content="${avatar}"/>` `<meta property="twitter:image" content="${avatar}"/>`
); );

View file

@ -91,7 +91,7 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
<!-- Embed profile picture, display name, and screen name in table --> <!-- Embed profile picture, display name, and screen name in table -->
<table> <table>
<img src="${tweet.author.avatar_url}" alt="${tweet.author.name}'s profile picture" /> <img src="${(tweet.author.avatar_url || '').replace('_200x200', '_400x400')}" alt="${tweet.author.name}'s profile picture" />
<h2>${tweet.author.name}</h2> <h2>${tweet.author.name}</h2>
<p>@${tweet.author.screen_name}</p> <p>@${tweet.author.screen_name}</p>
<p>${getSocialTextIV(tweet)}</p> <p>${getSocialTextIV(tweet)}</p>