diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-01 13:35:53 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-01 13:35:53 +0100 |
commit | 60edea0203637f9b146e06ba9f3c1e2fc37851da (patch) | |
tree | cb16f4876b0a699c448552e406a100605204fe22 /devtools/client/shared | |
parent | b43b4f25a8f195da2d54da9ebc5e415fb3b2a133 (diff) | |
download | UXP-60edea0203637f9b146e06ba9f3c1e2fc37851da.tar UXP-60edea0203637f9b146e06ba9f3c1e2fc37851da.tar.gz UXP-60edea0203637f9b146e06ba9f3c1e2fc37851da.tar.lz UXP-60edea0203637f9b146e06ba9f3c1e2fc37851da.tar.xz UXP-60edea0203637f9b146e06ba9f3c1e2fc37851da.zip |
DevTools - network - Copy as cURL (POST)
https://github.com/MoonchildProductions/moebius/pull/167
Diffstat (limited to 'devtools/client/shared')
-rw-r--r-- | devtools/client/shared/curl.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/devtools/client/shared/curl.js b/devtools/client/shared/curl.js index 44465193f..45122be37 100644 --- a/devtools/client/shared/curl.js +++ b/devtools/client/shared/curl.js @@ -76,7 +76,8 @@ const Curl = { // Create post data. let postData = []; - if (utils.isUrlEncodedRequest(data) || data.method == "PUT") { + if (utils.isUrlEncodedRequest(data) || + ["PUT", "POST"].includes(data.method)) { postDataText = data.postDataText; postData.push("--data"); postData.push(escapeString(utils.writePostDataTextParams(postDataText))); @@ -207,6 +208,9 @@ const CurlUtils = { * Post data parameters. */ writePostDataTextParams: function (postDataText) { + if (!postDataText) { + return ""; + } let lines = postDataText.split("\r\n"); return lines[lines.length - 1]; }, |