diff options
author | default <nobody@localhost> | 2023-09-01 11:50:01 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-09-01 11:50:01 +0200 |
commit | 4e87a1106a589e2edcaabbdc8a834e47a813414e (patch) | |
tree | 22885c0cb8508030ee7efd5b12e70ff89510015a /activitypub.c | |
parent | 57c84d1c3a153782d9bfa7b2edd157bdd1061e61 (diff) |
Consider error status 400 as fatal in output messages.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 13e0c3c..90ad874 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1901,7 +1901,7 @@ void process_queue_item(xs_dict *q_item) retries++; /* error sending; requeue? */ - if (status == 404 || status == 410 || status < 0) + if (status == 400 || status == 404 || status == 410 || status < 0) /* explicit error: discard */ srv_log(xs_fmt("output message: fatal error %s %d", inbox, status)); else |