From 837aeb0e22574208a4935ca19638616662117d97 Mon Sep 17 00:00:00 2001 From: Joe Date: Sun, 4 Jan 2026 15:55:21 -0800 Subject: [PATCH] minor formatting tweak when posting to zulip --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 9213a6f..e55ca09 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -275,7 +275,7 @@ impl BlogdorTheAggregator { } let active = active.join("\n"); let inactive = inactive.join("\n"); - Ok(format!("{active}\n---\n{inactive}")) + Ok(format!("\n{active}\n---\n{inactive}")) } async fn remove_feed(&self, remove_request: &UserRequest) -> Result { @@ -422,7 +422,7 @@ impl BlogdorTheAggregator { let tail = if body.len() <= ZULIP_MESSAGE_CUTOFF { "" } else { - "[...]" + "..." }; let url = post.post_url.as_str();