From edd53e7da7a539e69e3ba8c9b9f4d6476de86201 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 1 Dec 2011 22:06:25 -0500 Subject: [PATCH] catchAll was broken --- web.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web.d b/web.d index cafb931..e34396f 100644 --- a/web.d +++ b/web.d @@ -993,7 +993,7 @@ void run(Provider)(Cgi cgi, Provider instantiation, size_t pathInfoStartingPoint if(doc) instantiation._postProcess(doc); - cgi.setResponseLocation(d.contentType()); + cgi.setResponseContentType(d.contentType()); cgi.write(d.getData(), true); }