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
commit 1d25494274
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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