diff options
author | default <nobody@localhost> | 2022-11-18 08:10:47 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-11-18 08:10:47 +0100 |
commit | e01f23cbe27d9acbe3279a78364e11bec4517aac (patch) | |
tree | 775bdfb1f837a4b3b159f33de2575535cb56198c /html.c | |
parent | e6bf647b98ff5341c86d4f1172e3c6607bccc5ff (diff) |
Fixed Follow bug, introduced by latest sharedInbox change.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1215,10 +1215,11 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size, if (msg != NULL) { /* reload the actor from the message, in may be different */ actor = xs_dict_get(msg, "object"); + xs *inbox = get_actor_inbox(&snac, actor); following_add(&snac, actor, msg); - enqueue_output(&snac, msg, actor, 0); + enqueue_output(&snac, msg, inbox, 0); } } else |