From d325f20a272ed00b32637a48ee5865a937bc42e2 Mon Sep 17 00:00:00 2001 From: Florian <45694132+flo-bit@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:18:31 +0100 Subject: [PATCH] fix profile loading issue when no blento profile --- src/lib/atproto/methods.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/atproto/methods.ts b/src/lib/atproto/methods.ts index b3bdc692..038bc77d 100644 --- a/src/lib/atproto/methods.ts +++ b/src/lib/atproto/methods.ts @@ -131,7 +131,7 @@ export async function getBlentoOrBskyProfile(data: { did: Did; client?: Client } handle: response?.handle, displayName: blentoProfile?.value?.name || response?.displayName || response?.handle, avatar: avatar as `${string}:${string}`, - hasBlento: Boolean(blentoProfile.value), + hasBlento: Boolean(blentoProfile?.value), url: blentoProfile?.value?.url as string | undefined }; }