mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-26 06:05:45 +00:00
fix: update qs.stringify to use repeat array format for url serialization
This commit is contained in:
@@ -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') {
|
||||
|
||||
Reference in New Issue
Block a user