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 */
``
);
}