summaryrefslogtreecommitdiff
path: root/httpd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'httpd.cpp')
-rw-r--r--httpd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpd.cpp b/httpd.cpp
index 92eb9e8..203f4e0 100644
--- a/httpd.cpp
+++ b/httpd.cpp
@@ -27,7 +27,7 @@ void HTTPConnection::handle_read(const boost::system::error_code& error, size_t
res.code = 200;
res.status = "OK";
- ml->render(res);
+ ml->render(req, res);
} else {
res.code = 404;
res.status = "Not Found";