diff options
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 4 |
1 files changed, 2 insertions, 2 deletions
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)); } } |