diff --git a/khatru/handlers.go b/khatru/handlers.go index 0b349be..a9a7e10 100644 --- a/khatru/handlers.go +++ b/khatru/handlers.go @@ -229,7 +229,11 @@ func (rl *Relay) HandleWebsocket(w http.ResponseWriter, r *http.Request) { ok = false reason = "mute: no one was listening for this" } else { - reason = "broadcasted to " + strconv.Itoa(n) + " listeners" + if nil == rl.OnEphemeralEvent { + reason = "broadcasted to " + strconv.Itoa(n) + } else { + reason += "handled internally" + } } } }