snac2

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

commit 75911f5ce920a408fe81416232f9e5825afc64c2
parent 38106471c8ba31102560e5e0b642f1bd7f1c261f
Author: default <nobody@localhost>
Date:   Sat, 19 Oct 2024 22:29:46 +0200

Call list_distribute() from timeline_request().

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

diff --git a/activitypub.c b/activitypub.c @@ -378,6 +378,9 @@ int timeline_request(snac *snac, const char **id, xs_str **wrk, int level) /* store */ timeline_add(snac, nid, object); + /* redistribute to lists for this user */ + list_distribute(snac, actor, object); + /* recurse! */ timeline_request(snac, &in_reply_to, NULL, level + 1); }