snac2

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

commit 534cf2cdc1ef2baced71015583ff62d532d4dad3
parent f7665079fe669ba6260c45f81cda6d90ae4e9d81
Author: default <nobody@localhost>
Date:   Tue, 18 Jun 2024 05:40:10 +0200

Also send Updates to collected inboxes.

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

diff --git a/activitypub.c b/activitypub.c @@ -2204,7 +2204,7 @@ void process_user_queue_item(snac *snac, xs_dict *q_item) } /* if it's a public note or question, send to the collected inboxes */ - if (xs_match(xs_dict_get_def(msg, "type", ""), "Create") && is_msg_public(msg)) { + if (xs_match(xs_dict_get_def(msg, "type", ""), "Create|Update") && is_msg_public(msg)) { if (xs_type(xs_dict_get(srv_config, "disable_inbox_collection")) != XSTYPE_TRUE) { xs *shibx = inbox_list(); const xs_str *inbox;