From cce687bd601680741e93ab75da3d02a99c676387 Mon Sep 17 00:00:00 2001 From: grunfink Date: Fri, 31 Jul 2026 08:26:22 +0200 Subject: Mark actors from boosted posts as non-broken. --- activitypub.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/activitypub.c b/activitypub.c index 514e764..39029b6 100644 --- a/activitypub.c +++ b/activitypub.c @@ -3053,6 +3053,9 @@ int process_input_message(snac *snac, const xs_dict *msg, const xs_dict *req) /* distribute the post to users following these hashtags */ followed_hashtag_distribute(a_msg); + /* actor is [back] alive */ + actor_failure(who, 2); + do_notify = 1; } else -- cgit