From 49bca7e273640c65f9aa41309805ff3f7425123d Mon Sep 17 00:00:00 2001 From: default Date: Thu, 29 Sep 2022 09:11:43 +0200 Subject: html_entry() is built in its own string and then added. This will be faster. --- activitypub.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'activitypub.c') diff --git a/activitypub.c b/activitypub.c index 51ae6fa..cebefca 100644 --- a/activitypub.c +++ b/activitypub.c @@ -577,13 +577,17 @@ int process_message(snac *snac, char *msg, char *req) /* bring the actor */ a_status = actor_request(snac, actor, &actor_o); - /* if it's a 410 Gone, it's a Delete crap that can be ignored */ - if (a_status == 410) { + /* if the actor does not explicitly exist, discard */ + if (a_status == 404 || a_status == 410) { + snac_debug(snac, 1, + xs_fmt("dropping message due to actor error %s %d", actor, a_status)); + return 1; } if (!valid_status(a_status)) { - snac_log(snac, + /* other actor download errors may need a retry */ + snac_debug(snac, 1, xs_fmt("error requesting actor %s %d -- retry later", actor, a_status)); return 0; -- cgit v1.2.3