Skip to content

Commit

Permalink
revert: FORMS-1139 urlencoded extended setting (bcgov#1385)
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterMoar committed Jun 5, 2024
1 parent 753abda commit c0ba285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c0ba285

Please sign in to comment.