Merge pull request #866 from nikclayton/patch-1

fix: Remove charset from application/json content type
This commit is contained in:
Gregory K
2024-07-20 16:08:48 +03:00
committed by GitHub

View File

@@ -20,7 +20,7 @@ public class JsonObjectRequestBody extends RequestBody{
@Override
public MediaType contentType(){
return MediaType.get("application/json;charset=utf-8");
return MediaType.get("application/json");
}
@Override