From 210bb07a3494e1f08f12aaa4637821ef97ce1565 Mon Sep 17 00:00:00 2001 From: grunfink Date: Sun, 22 Mar 2026 08:22:35 +0100 Subject: Increase the size of outgoing payload errors in the log. --- activitypub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activitypub.c') diff --git a/activitypub.c b/activitypub.c index ed9acf9..bbd17f4 100644 --- a/activitypub.c +++ b/activitypub.c @@ -3557,9 +3557,9 @@ void process_queue_item(xs_dict *q_item) instance_failure(inbox, valid_status(status) ? 2 : 1); if (payload) { - if (p_size > 64) { + if (p_size > 1024) { /* trim the message */ - payload[64] = '\0'; + payload[1024] = '\0'; payload = xs_str_cat(payload, "..."); } -- cgit