aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2023-04-05 21:45:39 -0700
committercolin <colin@cicadas.surf>2023-04-05 21:46:01 -0700
commit341dc5227239f34b995f6c6f1cd40b9948d631e7 (patch)
tree0c4cb8c0911b7cef8221f8791e5fb74f2dd74739
parent6f4d010a6487a11617ef831d780d4053178bd333 (diff)
Fix: I'm confused as to how this had gone so long
-rw-r--r--lazybones.lisp2
1 files changed, 1 insertions, 1 deletions
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)