From 1b162c206ba389b80513823e9b6ff08da7e7c23e Mon Sep 17 00:00:00 2001 From: nex Date: Tue, 17 Jun 2025 13:08:26 +0000 Subject: [PATCH] remove typo --- src/admin/debug/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/admin/debug/commands.rs b/src/admin/debug/commands.rs index a9e95c59..a397e0fc 100644 --- a/src/admin/debug/commands.rs +++ b/src/admin/debug/commands.rs @@ -430,7 +430,7 @@ pub(super) async fn sign_json(&self) -> Result { let string = self.body[1..self.body.len().checked_sub(1).unwrap()].join("\n"); match serde_json::from_str(&string) { - | Err(e) => return Err!("Infirst_pdu.event_id.clone()valid json: {e}"), + | Err(e) => return Err!("Invalid json: {e}"), | Ok(mut value) => { self.services.server_keys.sign_json(&mut value)?; let json_text = serde_json::to_string_pretty(&value)?;