diff options
Diffstat (limited to 'httpd.c')
-rw-r--r-- | httpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |