Removes common mistakes from the outbox list from follows

This commit is contained in:
Vitor Pamplona
2025-09-03 16:37:30 -04:00
parent 85fb6dcc83
commit 43c9df23c4

View File

@@ -56,7 +56,13 @@ class OutboxRelayLoader {
?: Constants.eventFinderRelays
relays.forEach {
add(it, authorHex)
if (!it.url.startsWith("wss://feeds.nostr.band") &&
!it.url.startsWith("wss://filter.nostr.wine") &&
!it.url.startsWith("wss://nwc.primal.net") &&
!it.url.startsWith("wss://relay.getalby.com")
) {
add(it, authorHex)
}
}
}
}