From 5c68861787ffceab48f5f49011cd0adab7e5e512 Mon Sep 17 00:00:00 2001 From: byte Date: Tue, 30 Sep 2025 21:30:56 +0200 Subject: fix fetching --- activitypub.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/activitypub.c b/activitypub.c index 4ed2805..0a60d0d 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1104,6 +1104,10 @@ void collect_outbox(snac *user, const char *actor_id) /* not a post */ continue; } + if (is_msg_for_me(user, post) == 0) { + /* not for us */ + continue; + } const xs_dict *object = xs_dict_get(post, "object"); -- cgit v1.2.3