From bace54c552d56ff103583c5c79b9f3499ebbde27 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Thu, 28 May 2026 17:06:26 +0200 Subject: [PATCH] fix --- crates/adapters/activitypub/src/event_handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/adapters/activitypub/src/event_handler.rs b/crates/adapters/activitypub/src/event_handler.rs index 60059a0..1f89eb1 100644 --- a/crates/adapters/activitypub/src/event_handler.rs +++ b/crates/adapters/activitypub/src/event_handler.rs @@ -227,7 +227,7 @@ impl ActivityPubEventHandler { let json = serde_json::to_value(obj)?; self.ap_service - .broadcast_add_to_followers(user_id.value(), ap_id, json) + .broadcast_create_note(user_id.value(), json) .await?; Ok(()) }