From ff52f779b7d47da0274287c01a4cdd19e952c73e Mon Sep 17 00:00:00 2001 From: grunfink Date: Mon, 18 Aug 2025 19:54:53 +0200 Subject: New function enqueue_collect_replies(). --- activitypub.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activitypub.c') diff --git a/activitypub.c b/activitypub.c index a375584..065fbcd 100644 --- a/activitypub.c +++ b/activitypub.c @@ -2914,6 +2914,12 @@ void process_user_queue_item(snac *user, xs_dict *q_item) } } } + else + if (strcmp(type, "collect_replies") == 0) { + const char *post = xs_dict_get(q_item, "message"); + + collect_replies(user, post); + } else snac_log(user, xs_fmt("unexpected user q_item type '%s'", type)); } -- cgit v1.2.3