From c67252505dd1cc30fd6f935cab78d9c7ff4620dd Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 18 Aug 2023 03:49:14 -0400 Subject: [PATCH] Higher quality Instant View pfp --- src/embed/status.ts | 4 +++- src/render/instantview.ts | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/embed/status.ts b/src/embed/status.ts index bdf9e8f..412060a 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -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 (!tweet.media?.videos && !tweet.media?.photos && !flags?.textOnly) { /* Use a slightly higher resolution image for profile pics */ - const avatar = tweet.author.avatar_url; + let avatar = tweet.author.avatar_url || ''; if (!useIV) { headers.push( ``, `` ); } else { + /* Use higher quality version for IV, which uses a large version of the profile picture */ + avatar = avatar.replace('_200x200', '_400x400'); headers.push( `` ); diff --git a/src/render/instantview.ts b/src/render/instantview.ts index b67cc46..b485efc 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -91,7 +91,7 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc - ${tweet.author.name}'s profile picture + ${tweet.author.name}'s profile picture

${tweet.author.name}

@${tweet.author.screen_name}

${getSocialTextIV(tweet)}