diff --git a/app/app.js b/app/app.js index 82ce5a787..007d4c69a 100644 --- a/app/app.js +++ b/app/app.js @@ -24,7 +24,7 @@ let probeId; const app = express(); app.use(compression()); app.use(express.json({ limit: config.get('server.bodyLimit') })); -app.use(express.urlencoded()); +app.use(express.urlencoded({ extended: true })); // Express needs to know about the OpenShift proxy. With this setting Express // pulls the IP address from the headers, rather than use the proxy IP address.