From 4ced03bac14b57504cf6d3ca4d4770efc25dbfad Mon Sep 17 00:00:00 2001 From: default Date: Sun, 9 Apr 2023 20:34:05 +0200 Subject: OAuth login now works. --- httpd.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index 6d7b76e..d5de87c 100644 --- a/httpd.c +++ b/httpd.c @@ -179,6 +179,9 @@ void httpd_connection(FILE *f) if (status == 0) status = oauth_get_handler(req, q_path, &body, &b_size, &ctype); + if (status == 0) + status = mastoapi_get_handler(req, q_path, &body, &b_size, &ctype); + if (status == 0) status = html_get_handler(req, q_path, &body, &b_size, &ctype); } -- cgit v1.2.3