snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit e78f0bf1b1ef595a843374a3374d423c739a8cf9
parent 25b0829470ff33b991ae84b974b42002f7595683
Author: default <nobody@localhost>
Date:   Mon, 11 Dec 2023 16:00:16 +0100

Fixed error message.

Diffstat:
Mactivitypub.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/activitypub.c b/activitypub.c @@ -1513,7 +1513,7 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req) if (!valid_status(a_status)) { /* do not retry 'Delete' messages */ if (strcmp(type, "Delete") == 0) { - srv_debug(1, xs_fmt("dropping 'Delete' message due to actor error", actor, a_status)); + srv_debug(1, xs_fmt("dropping 'Delete' message due to actor error %s %d", actor, a_status)); return -1; }