From 0d2d562bb036b8265a1e2717e605b86a3ee4ef9c Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Tue, 21 May 2024 06:37:34 +1200 Subject: [PATCH] Deleted should return OK false (not OK true) --- src/nostr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostr.rs b/src/nostr.rs index b3a506d..f834404 100644 --- a/src/nostr.rs +++ b/src/nostr.rs @@ -216,7 +216,7 @@ impl WebSocketService { } ChorusError::Deleted => NostrReply::Ok( id, - true, + false, NostrReplyPrefix::Blocked, "That event is deleted".to_string(), ),