From 86de22fe92560db8d0661a6f4ee9be07a84043a3 Mon Sep 17 00:00:00 2001 From: grunfink Date: Sat, 16 Aug 2025 16:42:50 +0200 Subject: New function collect_replies(). --- snac.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'snac.h') diff --git a/snac.h b/snac.h index c060363..82c4a98 100644 --- a/snac.h +++ b/snac.h @@ -334,6 +334,8 @@ const char *default_avatar_base64(void); xs_str *process_tags(snac *snac, const char *content, xs_list **tag); +void collect_replies(snac *user, const char *id); + const char *get_atto(const xs_dict *msg); const char *get_in_reply_to(const xs_dict *msg); xs_list *get_attachments(const xs_dict *msg); -- cgit v1.2.3 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(). --- snac.h | 1 + 1 file changed, 1 insertion(+) (limited to 'snac.h') diff --git a/snac.h b/snac.h index 82c4a98..363855f 100644 --- a/snac.h +++ b/snac.h @@ -297,6 +297,7 @@ void enqueue_verify_links(snac *user); void enqueue_actor_refresh(snac *user, const char *actor, int forward_secs); void enqueue_webmention(const xs_dict *msg); void enqueue_notify_webhook(snac *user, const xs_dict *noti, int retries); +void enqueue_collect_replies(snac *user, const char *post); int was_question_voted(snac *user, const char *id); -- cgit v1.2.3