This repository has no description
0

Configure Feed

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

fix again

+3 -3
+3 -3
app/src/app/api/bluesky/profile/route.ts
··· 240 240 ); 241 241 242 242 if (pdsService && pdsService.endpoint) { 243 - serviceEndpoint = pdsService.endpoint; 244 - 245 243 // Extract the full URL including subdomain for reference 246 244 try { 247 245 const serviceUrl = new URL(pdsService.endpoint); 248 246 // Store the full hostname including subdomains 249 247 servicePds = serviceUrl.hostname; 250 - console.log(`Found PDS service for ${handle} at ${serviceEndpoint} (${servicePds})`); 248 + // Use the full hostname for the service endpoint 249 + serviceEndpoint = `https://${servicePds}`; 250 + console.log(`Found PDS service for ${handle} at ${serviceEndpoint}`); 251 251 } catch (e) { 252 252 console.warn(`Could not parse service URL: ${pdsService.endpoint}`); 253 253 }