From 25acaf178cc8a4112a5a150f5ee45bf69192cc0e Mon Sep 17 00:00:00 2001 From: default Date: Fri, 16 Dec 2022 07:16:00 +0100 Subject: Replaced all calls to post() with enqueue_message(). --- html.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'html.c') diff --git a/html.c b/html.c index 9d11325..ab1561b 100644 --- a/html.c +++ b/html.c @@ -1320,7 +1320,7 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size, c_msg = msg_create(&snac, msg); - post(&snac, c_msg); + enqueue_message(&snac, c_msg); timeline_add(&snac, xs_dict_get(msg, "id"), msg, in_reply_to, NULL); } @@ -1345,7 +1345,7 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size, xs *msg = msg_admiration(&snac, id, "Like"); if (msg != NULL) { - post(&snac, msg); + enqueue_message(&snac, msg); timeline_admire(&snac, msg, id, snac.actor, 1); } } @@ -1354,7 +1354,7 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size, xs *msg = msg_admiration(&snac, id, "Announce"); if (msg != NULL) { - post(&snac, msg); + enqueue_message(&snac, msg); timeline_admire(&snac, msg, id, snac.actor, 0); } } @@ -1407,7 +1407,7 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size, /* it's a post by us: generate a delete */ xs *msg = msg_delete(&snac, id); - post(&snac, msg); + enqueue_message(&snac, msg); /* FIXME: also post this Tombstone to people that Announce'd it */ @@ -1474,7 +1474,7 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size, xs *a_msg = msg_actor(&snac); xs *u_msg = msg_update(&snac, a_msg); - post(&snac, u_msg); + enqueue_message(&snac, u_msg); status = 303; } -- cgit v1.2.3