@saltcorn/server 0.7.2-beta.7 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/app.js CHANGED
@@ -100,7 +100,9 @@ const getApp = async (opts = {}) => {
100
100
  })
101
101
  );
102
102
  // extenetede url encoding in use
103
- app.use(express.urlencoded({ limit: "5mb", extended: true }));
103
+ app.use(
104
+ express.urlencoded({ limit: "5mb", extended: true, parameterLimit: 50000 })
105
+ );
104
106
 
105
107
  // cookies
106
108
  app.use(require("cookie-parser")());