Deleted should return OK false (not OK true)

This commit is contained in:
Mike Dilger 2024-05-21 06:37:34 +12:00
parent 25058ef415
commit 0d2d562bb0

View File

@ -216,7 +216,7 @@ impl WebSocketService {
} }
ChorusError::Deleted => NostrReply::Ok( ChorusError::Deleted => NostrReply::Ok(
id, id,
true, false,
NostrReplyPrefix::Blocked, NostrReplyPrefix::Blocked,
"That event is deleted".to_string(), "That event is deleted".to_string(),
), ),