diff --git a/apps/meteor/app/apps/server/bridges/router.ts b/apps/meteor/app/apps/server/bridges/router.ts index 993162b63c16f..3578b311f1c73 100644 --- a/apps/meteor/app/apps/server/bridges/router.ts +++ b/apps/meteor/app/apps/server/bridges/router.ts @@ -5,5 +5,5 @@ export const apiServer = express(); apiServer.disable('x-powered-by'); -apiServer.use('/api/apps/private/:appId/:hash', bodyParser.urlencoded(), bodyParser.json()); -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());