From bc98adb30083d0adf56e627309d1309d01fef4ac Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Sun, 22 Oct 2017 17:50:11 +0300 Subject: [PATCH] Don't double eval handler --- src/reitit/coercion.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reitit/coercion.cljc b/src/reitit/coercion.cljc index 7ceff540..ae2fffdc 100644 --- a/src/reitit/coercion.cljc +++ b/src/reitit/coercion.cljc @@ -164,7 +164,7 @@ (if (and coercion responses) (let [coercers (response-coercers coercion responses opts)] (coerce-response coercers request response)) - (handler request)))) + response))) ([request respond raise] (let [method (:request-method request) match (ring/get-match request)