We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
body-parser
1 parent 87e3923 commit 35658d5Copy full SHA for 35658d5
1 file changed
apps/meteor/app/apps/server/bridges/router.ts
@@ -5,5 +5,5 @@ export const apiServer = express();
5
6
apiServer.disable('x-powered-by');
7
8
-apiServer.use('/api/apps/private/:appId/:hash', bodyParser.urlencoded(), bodyParser.json());
9
-apiServer.use('/api/apps/public/:appId', bodyParser.urlencoded(), bodyParser.json());
+apiServer.use('/api/apps/private/:appId/:hash', bodyParser.urlencoded({ extended: true }), bodyParser.json());
+apiServer.use('/api/apps/public/:appId', bodyParser.urlencoded({ extended: true }), bodyParser.json());
0 commit comments