snac2

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

commit 58c01be9961d87be72fcb2391ecf6ed181d993a5
parent 5230435b31ec2ca159901831c97dfa62646c993d
Author: default <nobody@localhost>
Date:   Mon, 20 Feb 2023 10:02:21 +0100

Use actor_request() again in get_actor_inbox().

This was faster, but some actors not already here (i.e. some
mentions) were not posted.

Diffstat:
Mactivitypub.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/activitypub.c b/activitypub.c @@ -194,7 +194,7 @@ d_char *get_actor_inbox(snac *snac, char *actor) xs *data = NULL; char *v = NULL; - if (valid_status(actor_get(snac, actor, &data))) { + if (valid_status(actor_request(snac, actor, &data))) { /* try first endpoints/sharedInbox */ if ((v = xs_dict_get(data, "endpoints"))) v = xs_dict_get(v, "sharedInbox"); @@ -281,6 +281,8 @@ d_char *inbox_list(snac *snac, char *msg) /* add the inbox if it's not already there */ xs_set_add(&inboxes, inbox); } + else + snac_log(snac, xs_fmt("cannot find inbox for %s", v)); } return xs_set_result(&inboxes);