From 05f3e4a51efb9431bfc313b4e0a7a36c8bf2aed5 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 29 Jun 2018 18:24:35 +1000 Subject: [PATCH] Fixed .app being overwritten by .express --- private/server/Server.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/private/server/Server.js b/private/server/Server.js index fbc4497..fc1e097 100644 --- a/private/server/Server.js +++ b/private/server/Server.js @@ -80,18 +80,18 @@ class Server { } //Setup the express wrapper. - this.app = express(); + this.express = express(); //Setup Express Middleware - this.app.use(bodyParser.json({ + this.express.use(bodyParser.json({ type:'application/json' // to support JSON-encoded bodies })); - this.app.use(bodyParser.urlencoded({ + this.express.use(bodyParser.urlencoded({ extended: true })); //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)); if(this.isHTTPS()) { @@ -101,7 +101,7 @@ class Server { this.https = https.createServer({ key: this.key, cert: this.cert - }, this.app); + }, this.express); this.https.on('error', this.onServerError.bind(this)); } }