fix missing ! in CheckID()

This commit is contained in:
fiatjaf
2024-09-25 14:33:43 -03:00
parent 6e04cca511
commit 39d882857c

View File

@@ -127,7 +127,7 @@ func (rl *Relay) HandleWebsocket(w http.ResponseWriter, r *http.Request) {
switch env := envelope.(type) {
case *nostr.EventEnvelope:
// check id
if env.Event.CheckID() {
if !env.Event.CheckID() {
ws.WriteJSON(nostr.OKEnvelope{EventID: env.Event.ID, OK: false, Reason: "invalid: id is computed incorrectly"})
return
}