mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Revert "Higher quality Instant View pfp"
This reverts commit c67252505d
.
This commit is contained in:
parent
c67252505d
commit
7e4ad8c550
2 changed files with 2 additions and 4 deletions
|
@ -290,15 +290,13 @@ 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 */
|
||||||
let avatar = tweet.author.avatar_url || '';
|
const 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}"/>`
|
||||||
);
|
);
|
||||||
|
|
|
@ -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 || '').replace('_200x200', '_400x400')}" alt="${tweet.author.name}'s profile picture" />
|
<img src="${tweet.author.avatar_url}" 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>
|
||||||
|
|
Loading…
Add table
Reference in a new issue