From 56b008fcaeb3e8d0410c7fc13ed80fb9f89a6b60 Mon Sep 17 00:00:00 2001 From: aprilthepink Date: Mon, 17 Jun 2024 21:58:00 +0200 Subject: [PATCH] fix: fix post printing --- src/lysand/test.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lysand/test.rs b/src/lysand/test.rs index d56ef63..64edbc3 100644 --- a/src/lysand/test.rs +++ b/src/lysand/test.rs @@ -47,8 +47,6 @@ pub async fn main() -> anyhow::Result<()> { for item in outbox.items { let ap_item = super::conversion::receive_lysand_note(item, "https://ap.lysand.org/example".to_string()).await?; println!("{:#?}", ap_item); - let ap_json = serde_json::to_string_pretty(&SortAlphabetically(&ap_item))?; - println!("{}", ap_json); } Ok(())