2 parents 560da7c + 0475909 commit e6864b2Copy full SHA for e6864b2
1 file changed
src/app/hooks/useServers.ts
@@ -34,7 +34,7 @@ function parseServerTags(event: NdkEvent): ManagedServer[] {
34
const flag = tag[3] || "";
35
const note = tag[4];
36
const customName = (tag[5] || "").trim();
37
- const requiresAuth = rawType === "satellite" ? true : flag.includes("auth");
+ const requiresAuth = rawType === "satellite" ? true : !flag.includes("no-auth");
38
const sync = flag.includes("sync");
39
const derivedName = deriveServerNameFromUrl(url);
40
const name = customName || derivedName || url.replace(/^https?:\/\//, "");
0 commit comments