🐛 Fixed a typo which broke cURL import feature

This commit is contained in:
Liyas Thomas
2019-09-16 14:30:37 +05:30
parent e34662baec
commit 95eb7b86c9

View File

@@ -642,7 +642,7 @@
requestString.push(" -H 'Content-Type: " + this.contentType + "; charset=utf-8' \\\n")
requestString.push(" -d '" + requestBody + "' \\\n")
}
return requestString.join('').slice(0, -4);
return requestString.join('').slice(0, -3);
}
}
},