From c011b61e2398a78a20fd5c1fcc47c099140c9f1c Mon Sep 17 00:00:00 2001 From: Alie Date: Sun, 21 Jan 2024 17:27:30 +0100 Subject: [PATCH] fixed functions were messages where not separated by space --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 602b368..e807cf5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -94,7 +94,7 @@ async fn main() -> DynResult<()> { while let Err(err) = post( &mastodon, &format!( - "{}{}", + "{} {}", &config.errors.maintainers, &config.errors.out_of_images ), Visibility::Direct, @@ -115,7 +115,7 @@ async fn main() -> DynResult<()> { log::error!("Cannot get next image: {}", err); match post( &mastodon, - &format!("{}{}", &config.errors.maintainers, &err.to_string()), + &format!("{} {}", &config.errors.maintainers, &err.to_string()), Visibility::Direct, ) .await