Use Base::retract() instead of into_any_base() on creating activity

This commit is contained in:
Kitaiti Makoto 2022-02-14 20:21:19 +09:00
parent 85e35fdb5d
commit 6b5a1d2130
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ use activitystreams::{
activity::Delete as Delete07,
actor::AsApActor,
actor::{ApActor as ApActor07, Endpoints as Endpoints07, Person as Person07},
base::AnyBase,
base::{AnyBase, Base},
collection::{
OrderedCollection as OrderedCollection07, OrderedCollectionPage as OrderedCollectionPage07,
},
@ -972,7 +972,7 @@ impl User {
let mut del = Delete07::new(
self.ap_url.parse::<IriString>()?,
tombstone.into_any_base()?,
Base::retract(tombstone)?.into_generic()?,
);
del.set_id(format!("{}#delete", self.ap_url).parse()?);
del.set_many_tos(vec![PUBLIC_VISIBILITY.parse::<IriString>()?]);