diff options
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) | |||
| 1901 | retries++; | 1901 | retries++; |
| 1902 | 1902 | ||
| 1903 | /* error sending; requeue? */ | 1903 | /* error sending; requeue? */ |
| 1904 | if (status == 404 || status == 410 || status < 0) | 1904 | if (status == 400 || status == 404 || status == 410 || status < 0) |
| 1905 | /* explicit error: discard */ | 1905 | /* explicit error: discard */ |
| 1906 | srv_log(xs_fmt("output message: fatal error %s %d", inbox, status)); | 1906 | srv_log(xs_fmt("output message: fatal error %s %d", inbox, status)); |
| 1907 | else | 1907 | else |