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