From ef188050086c0429fb84d7b9e806e7f92b9e5722 Mon Sep 17 00:00:00 2001 From: Pragadesh-45 Date: Thu, 26 Jun 2025 12:05:02 +0545 Subject: [PATCH] fix(electron): standardize quotes in qs.stringify for form-urlencoded data --- 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 e3b9be48a..10f6d129a 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, { arrayFormat: "repeat" }); + request.data = qs.stringify(request.data, { arrayFormat: 'repeat' }); } if (request.headers['content-type'] === 'multipart/form-data') {