Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix View Full Thread (#2181)

authored by

dan and committed by
GitHub
27561ae7 2f8e7b26

+5 -5
+5 -5
src/lib/routes/links.ts
··· 7 7 }, 8 8 ...segments: string[] 9 9 ) { 10 - return [ 11 - `/profile`, 12 - `${isInvalidHandle(info.handle) ? info.did : info.handle}`, 13 - ...segments, 14 - ].join('/') 10 + let handleSegment = info.did 11 + if (info.handle && !isInvalidHandle(info.handle)) { 12 + handleSegment = info.handle 13 + } 14 + return [`/profile`, handleSegment, ...segments].join('/') 15 15 } 16 16 17 17 export function makeCustomFeedLink(