atproto explorer
0
fork

Configure Feed

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

fix URL parsing

+4 -1
+4 -1
src/components/json.tsx
··· 19 19 <A class="underline" href={`/at/${data}`}> 20 20 {data} 21 21 </A> 22 - : URL.canParse(data) ? 22 + : ( 23 + URL.canParse(data) && 24 + ["http:", "https:", "web+at:"].includes(new URL(data).protocol) 25 + ) ? 23 26 <a 24 27 class="underline" 25 28 href={data}