summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-04-08 09:09:43 +0200
committerdefault <nobody@localhost>2023-04-08 09:09:43 +0200
commit4964a564560fb81a505179ae7d9730d2231a743c (patch)
treef8061836eec76123af0b325f3b59e2b215e2a21f /httpd.c
parenteba6987fd55c2cc94393c61e6bbd86514e14993b (diff)
More mastoapi work.
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/httpd.c b/httpd.c
index e220d29..6d7b76e 100644
--- a/httpd.c
+++ b/httpd.c
@@ -177,6 +177,9 @@ void httpd_connection(FILE *f)
status = activitypub_get_handler(req, q_path, &body, &b_size, &ctype);
if (status == 0)
+ status = oauth_get_handler(req, q_path, &body, &b_size, &ctype);
+
+ if (status == 0)
status = html_get_handler(req, q_path, &body, &b_size, &ctype);
}
else