Fix View Full Thread (#2181)

zio/stable
dan 2023-12-12 19:31:02 +00:00 committed by GitHub
parent 2f8e7b2656
commit 27561ae79f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -7,11 +7,11 @@ export function makeProfileLink(
},
...segments: string[]
) {
return [
`/profile`,
`${isInvalidHandle(info.handle) ? info.did : info.handle}`,
...segments,
].join('/')
let handleSegment = info.did
if (info.handle && !isInvalidHandle(info.handle)) {
handleSegment = info.handle
}
return [`/profile`, handleSegment, ...segments].join('/')
}
export function makeCustomFeedLink(