From 6e6c3154940e21a97473154e57e851790740d550 Mon Sep 17 00:00:00 2001 From: default Date: Fri, 23 Sep 2022 20:59:19 +0200 Subject: New function activitypub_get_handler(). --- httpd.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index 037f690..20ba763 100644 --- a/httpd.c +++ b/httpd.c @@ -131,6 +131,9 @@ void httpd_connection(int rs) if (status == 0) status = webfinger_get_handler(req, q_path, &body, &b_size, &ctype); + + if (status == 0) + status = activitypub_get_handler(req, q_path, &body, &b_size, &ctype); } else if (strcmp(method, "POST") == 0) { -- cgit v1.2.3