diff options
| author | 2023-12-11 16:00:16 +0100 | |
|---|---|---|
| committer | 2023-12-11 16:00:16 +0100 | |
| commit | e78f0bf1b1ef595a843374a3374d423c739a8cf9 (patch) | |
| tree | 32ad1415b1c540fbd24be635554de8d1589f207c /activitypub.c | |
| parent | Do not retry Delete messages on actor error. (diff) | |
| download | snac2-e78f0bf1b1ef595a843374a3374d423c739a8cf9.tar.gz snac2-e78f0bf1b1ef595a843374a3374d423c739a8cf9.tar.xz snac2-e78f0bf1b1ef595a843374a3374d423c739a8cf9.zip | |
Fixed error message.
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 f7a76d2..4f109cc 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -1513,7 +1513,7 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req) | |||
| 1513 | if (!valid_status(a_status)) { | 1513 | if (!valid_status(a_status)) { |
| 1514 | /* do not retry 'Delete' messages */ | 1514 | /* do not retry 'Delete' messages */ |
| 1515 | if (strcmp(type, "Delete") == 0) { | 1515 | if (strcmp(type, "Delete") == 0) { |
| 1516 | srv_debug(1, xs_fmt("dropping 'Delete' message due to actor error", actor, a_status)); | 1516 | srv_debug(1, xs_fmt("dropping 'Delete' message due to actor error %s %d", actor, a_status)); |
| 1517 | return -1; | 1517 | return -1; |
| 1518 | } | 1518 | } |
| 1519 | 1519 | ||