Ignore unnecessary error

This commit is contained in:
Jon Staab
2025-05-12 09:01:13 -07:00
parent 12fcdfcd4f
commit 2f9010cd13
2 changed files with 7 additions and 3 deletions

View File

@@ -4,6 +4,7 @@
* Add light theme * Add light theme
* Use correct alerts server * Use correct alerts server
* Ignore relay errors for claims
# 1.0.2 # 1.0.2

View File

@@ -276,10 +276,13 @@ export const checkRelayAccess = async (url: string, claim = "") => {
// If it's a strict NIP 29 relay don't worry about requesting access // If it's a strict NIP 29 relay don't worry about requesting access
// TODO: remove this if relay29 ever gets less strict // TODO: remove this if relay29 ever gets less strict
if (message !== "missing group (`h`) tag") { if (message === "missing group (`h`) tag") return
// Ignore messages about the relay ignoring ours
if (error?.startsWith("mute: ")) return
return message return message
} }
}
} }
export const checkRelayProfile = async (url: string) => { export const checkRelayProfile = async (url: string) => {