From 9bf65054498df1216b0e1db42b154ac282470026 Mon Sep 17 00:00:00 2001 From: grunfink Date: Thu, 16 Apr 2026 10:40:52 +0200 Subject: Mark actor and instance as OK in successful actor refreshing. --- activitypub.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/activitypub.c b/activitypub.c index 2f6da8b..9e49d0d 100644 --- a/activitypub.c +++ b/activitypub.c @@ -3421,6 +3421,10 @@ void process_user_queue_item(snac *user, xs_dict *q_item) actor_o = actor_get_collections(user, actor_o, 1); actor_add(actor, actor_o); + + /* mark actor and instance as working */ + actor_failure(actor, 2); + instance_failure(actor, 2); } else { if (status == HTTP_STATUS_GONE || status == HTTP_STATUS_NOT_FOUND) { -- cgit