From 35aee05be43a00716e04c15f15493138c5a2cd97 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 18 Aug 2023 03:42:36 -0400 Subject: [PATCH] Fixed lower resolution avatars being used --- src/embed/status.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/embed/status.ts b/src/embed/status.ts index 8a88a2f..bdf9e8f 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -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 */ ``, `` ); } else { headers.push( - /* Use a slightly higher resolution image for profile pics */ `` ); }