diff options
| author | default <nobody@localhost> | 2023-04-11 21:07:47 +0200 |
|---|---|---|
| committer | default <nobody@localhost> | 2023-04-11 21:07:47 +0200 |
| commit | c0a48f1f4e690cfe63b57e287fe917b5e27bfb87 (patch) | |
| tree | 54fe55a2ef86851f9ebe007f34b2811179439241 /httpd.c | |
| parent | 036be9d02ca2f96912cbd2dbad65ce9adea36b03 (diff) | |
Added support for likes and boosts.
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) |