Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
119
fork

Configure Feed

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

at d42a2808ba53a049fc38f559feeddaa5a335f93f 10 lines 333 B view raw
1export function parseLinkingUrl(url: string): URL { 2 /* 3 * Hack: add a third slash to bluesky:// urls so that `URL.host` is empty and 4 * `URL.pathname` has the full path. 5 */ 6 if (url.startsWith('bluesky://') && !url.startsWith('bluesky:///')) { 7 url = url.replace('bluesky://', 'bluesky:///') 8 } 9 return new URL(url) 10}