This repository has no description
0

Configure Feed

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

add subdomain to endpoint

+2 -1
+2 -1
app/src/app/api/bluesky/profile/route.ts
··· 133 133 if (pdsService && pdsService.endpoint) { 134 134 serviceEndpoint = pdsService.endpoint; 135 135 136 - // Extract just the domain for reference 136 + // Extract the full URL including subdomain for reference 137 137 try { 138 138 const serviceUrl = new URL(pdsService.endpoint); 139 + // Store the full hostname including subdomains 139 140 servicePds = serviceUrl.hostname; 140 141 console.log(`Found PDS service for ${handle} at ${serviceEndpoint} (${servicePds})`); 141 142 } catch (e) {