From d1a2a7438dddc898b794a7a9b3b0961afc1a36e4 Mon Sep 17 00:00:00 2001 From: default Date: Mon, 26 Sep 2022 07:13:39 +0200 Subject: New metadata 'referrer', that contains an actor. This field contains the actor that boosted an entry. --- activitypub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activitypub.c') diff --git a/activitypub.c b/activitypub.c index 13d7d85..4b2947e 100644 --- a/activitypub.c +++ b/activitypub.c @@ -91,7 +91,7 @@ void timeline_request(snac *snac, char *id) timeline_request(snac, in_reply_to); /* finally store */ - timeline_add(snac, id, object, in_reply_to); + timeline_add(snac, id, object, in_reply_to, NULL); } } } @@ -282,7 +282,7 @@ void process_message(snac *snac, char *msg, char *req) timeline_request(snac, in_reply_to); - if (timeline_add(snac, id, msg, in_reply_to)) + if (timeline_add(snac, id, msg, in_reply_to, NULL)) snac_log(snac, xs_fmt("new 'Note' %s %s", actor, id)); } } -- cgit v1.2.3