From a2ae85d46cae5535349c14da008d970636050f57 Mon Sep 17 00:00:00 2001 From: Kevin Aleman Date: Thu, 23 Apr 2026 12:40:13 -0600 Subject: [PATCH] fix body parser warning --- apps/meteor/app/apps/server/bridges/router.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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());