tangled
alpha
login
or
join now
bas.sh
/
witchsky.app
forked from
jollywhoppers.com/witchsky.app
0
fork
atom
Bluesky app fork with some witchin' additions 💫
0
fork
atom
overview
issues
pulls
pipelines
encode url (#7968)
authored by
hailey.at
and committed by
GitHub
1 year ago
490e3812
26fb0a7f
+1
-1
1 changed file
expand all
collapse all
unified
split
src
lib
strings
url-helpers.ts
+1
-1
src/lib/strings/url-helpers.ts
···
332
332
return url
333
333
}
334
334
335
335
-
return `https://go.bsky.app/redirect?u=${url}`
335
335
+
return `https://go.bsky.app/redirect?u=${encodeURIComponent(url)}`
336
336
}
337
337
338
338
export function isShortLink(url: string): boolean {