mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-23 12:45:38 +00:00
fix(cli): update qs.stringify to use repeat array format for url serialization
This commit is contained in:
@@ -330,7 +330,7 @@ const runSingleRequest = async function (
|
||||
|
||||
// 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