OAuth login now works.

This commit is contained in:
default
2023-04-09 20:34:05 +02:00
parent 752058bf66
commit 4ced03bac1
3 changed files with 109 additions and 17 deletions
+3
View File
@@ -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);
}