From b29ca0cadcd67773cf680dda0d1d95289b106c5f Mon Sep 17 00:00:00 2001 From: aprilthepink Date: Thu, 27 Jun 2024 17:14:37 +0200 Subject: [PATCH] fix: add mentioned user to TO in test --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 34d8096..29c9cac 100644 --- a/src/main.rs +++ b/src/main.rs @@ -94,7 +94,7 @@ async fn post_manually( id: id.clone(), sensitive: false, attributed_to: Url::parse(&local_user.id).unwrap().into(), - to: vec![public()], + to: vec![public(), mention.href.clone()], content: format!("{} {}", path.1, target.name), tag: vec![mention], in_reply_to: None,