From 7ff06d22ebd77608ecb0b31c13a45a47d151f213 Mon Sep 17 00:00:00 2001 From: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Date: Thu, 31 Oct 2024 12:59:21 +0800 Subject: [PATCH] fix(bsky): use avatar for image (#17381) --- lib/routes/bsky/posts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/bsky/posts.ts b/lib/routes/bsky/posts.ts index 959fb3378964be..dda7eb999ec31a 100644 --- a/lib/routes/bsky/posts.ts +++ b/lib/routes/bsky/posts.ts @@ -82,7 +82,7 @@ async function handler(ctx) { title: `${profile.displayName} (@${profile.handle}) — Bluesky`, description: profile.description?.replaceAll('\n', ' '), link: `https://bsky.app/profile/${profile.handle}`, - image: profile.banner, + image: profile.avatar, icon: profile.avatar, logo: profile.avatar, item: items,