Fixed .app being overwritten by .express

This commit is contained in:
2018-06-29 18:24:35 +10:00
parent 9068002c96
commit 05f3e4a51e

View File

@ -80,18 +80,18 @@ class Server {
} }
//Setup the express wrapper. //Setup the express wrapper.
this.app = express(); this.express = express();
//Setup Express Middleware //Setup Express Middleware
this.app.use(bodyParser.json({ this.express.use(bodyParser.json({
type:'application/json' // to support JSON-encoded bodies type:'application/json' // to support JSON-encoded bodies
})); }));
this.app.use(bodyParser.urlencoded({ this.express.use(bodyParser.urlencoded({
extended: true extended: true
})); }));
//Create our HTTP and (if needed HTTPS) server(s) //Create our HTTP and (if needed HTTPS) server(s)
this.http = http.createServer(this.app); this.http = http.createServer(this.express);
this.http.on('error', this.onServerError.bind(this)); this.http.on('error', this.onServerError.bind(this));
if(this.isHTTPS()) { if(this.isHTTPS()) {
@ -101,7 +101,7 @@ class Server {
this.https = https.createServer({ this.https = https.createServer({
key: this.key, key: this.key,
cert: this.cert cert: this.cert
}, this.app); }, this.express);
this.https.on('error', this.onServerError.bind(this)); this.https.on('error', this.onServerError.bind(this));
} }
} }