Very minor fixes

This commit is contained in:
Bryan Ashby 2017-02-16 20:53:14 -07:00
parent 8a475845a7
commit 6285193545
3 changed files with 5 additions and 5 deletions

View file

@ -62,7 +62,7 @@ exports.getModule = class WebServerModule extends ServerModule {
this.addRoute({
method : 'GET',
path : '/static/.*$',
handler : this.routeStaticFile,
handler : this.routeStaticFile.bind(this),
});
}
}