atproto explorer
0
fork

Configure Feed

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

de morgan moment

Juliet f6175ead c06ee364

+1 -1
+1 -1
src/views/stream.tsx
··· 38 38 } else { 39 39 url = formData.get("instance")?.toString() ?? "wss://bsky.network"; 40 40 url = url.replace("/xrpc/com.atproto.sync.subscribeRepos", ""); 41 - if (!url.startsWith("wss://") && !url.startsWith("ws://")) url = "wss://" + url; 41 + if (!(url.startsWith("wss://") || url.startsWith("ws://"))) url = "wss://" + url; 42 42 } 43 43 44 44 const collections = formData.get("collections")?.toString().split(",");