From 4664fd60b5492098d90f50d01d29b7d552587958 Mon Sep 17 00:00:00 2001 From: Pragadesh-45 Date: Thu, 19 Jun 2025 20:01:36 +0545 Subject: [PATCH] fix: update qs.stringify to use repeat array format for url serialization --- packages/bruno-electron/src/ipc/network/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-electron/src/ipc/network/index.js b/packages/bruno-electron/src/ipc/network/index.js index f63926991..e3b9be48a 100644 --- a/packages/bruno-electron/src/ipc/network/index.js +++ b/packages/bruno-electron/src/ipc/network/index.js @@ -454,7 +454,7 @@ const registerNetworkIpc = (mainWindow) => { // stringify the request url encoded params if (request.headers['content-type'] === 'application/x-www-form-urlencoded') { - request.data = qs.stringify(request.data); + request.data = qs.stringify(request.data, { arrayFormat: "repeat" }); } if (request.headers['content-type'] === 'multipart/form-data') {