fix: outbox is activities, not objects

This commit is contained in:
əlemi 2025-01-09 20:39:58 +01:00
parent 58fe884578
commit 340b598612
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -478,7 +478,7 @@ impl Fetcher for crate::Context {
// TODO parallelize these
for item in outbox.ordered_items().all_ids() {
self.fetch_object(&item, tx).await?;
self.fetch_activity(&item, tx).await?;
}
Ok(())