Set to and cc for new Follow activities

This commit is contained in:
Bat 2018-06-23 13:47:53 +01:00
parent 3a19cae62e
commit e7fd12ae6f
1 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,8 @@ fn follow(name: String, conn: DbConn, user: User) -> Redirect {
act.follow_props.set_actor_link::<Id>(user.clone().into_id()).unwrap();
act.follow_props.set_object_object(user.into_activity(&*conn)).unwrap();
act.object_props.set_id_string(format!("{}/follow/{}", user.ap_url, target.ap_url)).unwrap();
act.object_props.set_to_link(target.clone().into_id()).expect("New Follow error while setting 'to'");
act.object_props.set_cc_link_vec::<Id>(vec![]).expect("New Follow error while setting 'cc'");
broadcast(&user, act, vec![target]);
Redirect::to(uri!(details: name = name))