this repo has no description
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: always use ctx.url.origin for og:image URL (never depends on FRESH_PUBLIC_SITE_URL)

Made-with: Cursor

+4 -1
+4 -1
routes/explore/[handle].tsx
··· 85 85 const pageDescription = profile.description || 86 86 messages.detail.missingProfile; 87 87 const ogImageUrl = profile.bannerCid 88 - ? `/api/registry/banner/${encodeURIComponent(profile.did)}` 88 + ? new URL( 89 + `/api/registry/banner/${encodeURIComponent(profile.did)}`, 90 + ctx.url.origin, 91 + ).href 89 92 : undefined; 90 93 ctx.state.pageMeta = { 91 94 title: pageTitle,