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 0c1015d..9e6d132 100644
--- a/httpd.cpp
+++ b/httpd.cpp
@@ -22,7 +22,7 @@ void HTTPConnection::handle_read(const boost::system::error_code& error, size_t
HTTPResponse res(socket);
- MusicListing *ml = music::find(req.path);
+ MusicListing::p ml = music::get(req.path);
if(ml) {
res.code = 200;
res.status = "OK";