Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix embeder (#6616)

authored by

dan and committed by
GitHub
391e0c4c dc3a42ed

+2 -2
+2 -2
bskyembed/src/components/embed.tsx
··· 436 436 437 437 // from #/lib/strings/starter-pack.ts 438 438 function getStarterPackImage(starterPack: AppBskyGraphDefs.StarterPackView) { 439 - const rkey = getRkey(starterPack.uri) 439 + const rkey = getRkey({uri: starterPack.uri}) 440 440 return `https://ogcard.cdn.bsky.app/start/${starterPack.creator.did}/${rkey}` 441 441 } 442 442 443 443 function getStarterPackHref( 444 444 starterPack: AppBskyGraphDefs.StarterPackViewBasic, 445 445 ) { 446 - const rkey = getRkey(starterPack.uri) 446 + const rkey = getRkey({uri: starterPack.uri}) 447 447 const handleOrDid = starterPack.creator.handle || starterPack.creator.did 448 448 return `/starter-pack/${handleOrDid}/${rkey}` 449 449 }