postmanlabs / curl-to-postman

Converts curl requests to Postman Collection v2 request objects
Apache License 2.0
65 stars 31 forks source link

Fixed issue where escaped single character sequence were not correctly represented in request body. #42

Closed VShingala closed 3 years ago

VShingala commented 3 years ago

Fixes issue https://github.com/postmanlabs/postman-app-support/issues/4772.

Issue was around escaped single characters like \\n present in string not resolved correctly in body. We are now replacing such sequences with actual characters.