Fix broadcasting user profiles when protected

This commit is contained in:
Jon Staab
2025-06-16 16:56:59 -07:00
parent d99ada44f5
commit 2fae3ca248
5 changed files with 31 additions and 11 deletions
+5
View File
@@ -233,6 +233,11 @@ export const checkRelayAccess = async (url: string, claim = "") => {
// Ignore messages about the relay ignoring ours
if (error?.startsWith("mute: ")) return
// Ignore rejected empty claims
if (!claim && error?.includes("invite code")) {
return `failed to request access to relay`
}
return message
}
}