From c0a48f1f4e690cfe63b57e287fe917b5e27bfb87 Mon Sep 17 00:00:00 2001 From: default Date: Tue, 11 Apr 2023 21:07:47 +0200 Subject: Added support for likes and boosts. --- httpd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index d5de87c..7f6a428 100644 --- a/httpd.c +++ b/httpd.c @@ -188,15 +188,15 @@ void httpd_connection(FILE *f) else if (strcmp(method, "POST") == 0) { if (status == 0) - status = activitypub_post_handler(req, q_path, + status = oauth_post_handler(req, q_path, payload, p_size, &body, &b_size, &ctype); if (status == 0) - status = oauth_post_handler(req, q_path, + status = mastoapi_post_handler(req, q_path, payload, p_size, &body, &b_size, &ctype); if (status == 0) - status = mastoapi_post_handler(req, q_path, + status = activitypub_post_handler(req, q_path, payload, p_size, &body, &b_size, &ctype); if (status == 0) -- cgit v1.2.3