From 370402532473504f8be87203aadc6796dd847041 Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Fri, 4 Oct 2019 14:46:59 +0200 Subject: [PATCH] fix typo --- src/request.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/request.lisp b/src/request.lisp index 200156b..882fc4d 100644 --- a/src/request.lisp +++ b/src/request.lisp @@ -66,7 +66,7 @@ (defun make-request (env) (let ((req (apply #'%make-request :env env :allow-other-keys t env))) - (with-slots (method uri uri-scheme) req + (with-slots (method uri uri-scheme content-type) req (unless method (setf method (getf env :request-method))) (unless uri