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