1
0
mirror of https://github.com/seejohnrun/haste-server.git synced 2025-12-13 03:05:55 +00:00

Remove url from static_handler.js

This commit is contained in:
John Crepezzi
2011-11-18 16:00:05 -05:00
parent 44d54174ed
commit 4f00d3c71a
2 changed files with 4 additions and 6 deletions

View File

@@ -35,6 +35,6 @@ http.createServer(function(request, response) {
// Otherwise, look for static file
handler = new StaticHandler('./static');
handler.handle(request, response);
handler.handle(incoming.pathname, response);
}).listen(7777);