We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b83d7b commit b830746Copy full SHA for b830746
src/utils/curlRequestParser.ts
@@ -55,6 +55,8 @@ export class CurlRequestParser implements RequestParser {
55
let body = parsedArguments.d || parsedArguments.data || parsedArguments['data-ascii'] || parsedArguments['data-binary'] || parsedArguments['data-raw'];
56
if (Array.isArray(body)) {
57
body = body.join('&');
58
+ } else {
59
+ body = body.toString();
60
}
61
62
if (typeof body === 'string' && body[0] === '@') {
0 commit comments