diff options
| author | grunfink <grunfink@comam.es> | 2026-07-31 08:26:22 +0200 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2026-07-31 08:26:22 +0200 |
| commit | cce687bd601680741e93ab75da3d02a99c676387 (patch) | |
| tree | be2d0e4e3a4b65bab45bd9376300dd9e60e08f60 | |
| parent | 86852a0c2d95bbee5105294dff1f1998f93dbfed (diff) | |
Mark actors from boosted posts as non-broken.
| -rw-r--r-- | activitypub.c | 3 |
1 files changed, 3 insertions, 0 deletions
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 |