fix(web): oops public posts get sent to followers

This commit is contained in:
əlemi 2024-05-29 22:38:37 +02:00
parent 869ccbd65c
commit 31d536d3d5
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -119,6 +119,7 @@ pub fn PostBox(advanced: WriteSignal<bool>) -> impl IntoView {
}
if get_checked(public_ref) {
cc_vec.push(apb::target::PUBLIC.to_string());
cc_vec.push(format!("{URL_BASE}/actors/{}/followers", auth.username()));
}
if let Some(r) = reply.reply_to.get() {
if let Some(au) = post_author(&r) {