From f6d51357afcb047a0804600a19694944f64e82bc Mon Sep 17 00:00:00 2001 From: default Date: Mon, 6 Feb 2023 20:29:18 +0100 Subject: process_queue() now posts the q_item to the thread pool. Instead of calling process_queue_item() itself. --- activitypub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activitypub.c') diff --git a/activitypub.c b/activitypub.c index 5aae251..651c18c 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1215,7 +1215,7 @@ void process_queue(void) continue; } - process_queue_item(q_item); + job_post(q_item); } } -- cgit v1.2.3