Browse Source

typo

master
Martin Dørum 4 years ago
parent
commit
01689ffb25
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      server/filesrv.js

+ 1
- 1
server/filesrv.js View File

@@ -7,7 +7,7 @@ module.exports = function createFileServer(webroot) {
console.log(req.method+" "+req.url);
if (req.method != "HEAD" && req.method != "GET") {
res.writeHead(405);
reqsend(`Unexpected method: ${req.method}`);
res.send(`Unexpected method: ${req.method}`);
return;
}


Loading…
Cancel
Save