From 341dc5227239f34b995f6c6f1cd40b9948d631e7 Mon Sep 17 00:00:00 2001 From: colin Date: Wed, 5 Apr 2023 21:45:39 -0700 Subject: Fix: I'm confused as to how this had gone so long --- lazybones.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lazybones.lisp b/lazybones.lisp index 1738c00..970d212 100644 --- a/lazybones.lisp +++ b/lazybones.lisp @@ -343,7 +343,7 @@ applying HANDLER-FUNCTION slot of ENDPOINT to the ARGS list." (*response* response) (*app* app)) (if (request-authorized-p endpoint) - (apply (endpoint-request-handler endpoint) args) + (http-respond (apply (endpoint-request-handler endpoint) args)) (http-err 403)))) (defun request-authorized-p (endpoint) -- cgit v1.2.3