fixed functions were messages where not separated by space
This commit is contained in:
parent
8002bec7e0
commit
c011b61e23
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue