From 07337ffe2f8d6b74fcbc65e0b63b59b65cf8c518 Mon Sep 17 00:00:00 2001 From: aprilthepink Date: Sat, 4 May 2024 18:04:26 +0200 Subject: [PATCH] Update post_manually function to include path in content --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 414738d..1179c16 100644 --- a/src/main.rs +++ b/src/main.rs @@ -80,7 +80,7 @@ async fn post_manually( sensitive: false, attributed_to: Url::parse(&data.local_user().await?.id).unwrap().into(), to: vec![public()], - content: format!("Hello {}", creator.name), + content: format!("{} {}", path.1, creator.name), tag: vec![mention], in_reply_to: None, };