Describe the bug
When the request body is a json string, then when getting request body, it is wrapped around additional string quotes.
To Reproduce
Steps to reproduce the behavior:
- Create the request object
RequestBodyEntity request = Unirest.post("/post")
.basicAuth("foo", "bar")
.header("Content-Type", "application/json")
.queryString("foo", "bar")
.body("{\"body\": \"sample\"}");
Expected behavior
request.getBody().get().uniPart().getValue().toString() should return "{\"body\": \"sample\"}" but returns ""{\"body\": \"sample\"}"" instead.
Screenshots
If applicable, add screenshots to help explain your problem.

Environmental Data:
- Java Version - 11
- Version [e.g. 3.8.06]
Additional context
Add any other context about the problem here.
Describe the bug
When the request body is a json string, then when getting request body, it is wrapped around additional string quotes.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
request.getBody().get().uniPart().getValue().toString()should return"{\"body\": \"sample\"}"but returns""{\"body\": \"sample\"}""instead.Screenshots

If applicable, add screenshots to help explain your problem.
Environmental Data:
Additional context
Add any other context about the problem here.