From c99cacfa07cf8e8caf2e0399230c477dace1e83c Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Fri, 6 Jun 2025 15:08:01 -0700 Subject: [PATCH] Remove annoying mute error --- handlers.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/handlers.go b/handlers.go index db37976..289d7c3 100644 --- a/handlers.go +++ b/handlers.go @@ -240,12 +240,7 @@ func (rl *Relay) HandleWebsocket(w http.ResponseWriter, r *http.Request) { // the number of notified listeners matters in ephemeral events if nostr.IsEphemeralKind(env.Event.Kind) { - if n == 0 { - ok = false - reason = "mute: no one was listening for this" - } else { - reason = "broadcasted to " + strconv.Itoa(n) + " listeners" - } + reason = "broadcasted to " + strconv.Itoa(n) + " listeners" } } } else {