Merge pull request #8624 from TacoTheDank/bumpOkhttp

Update OkHttp to 4.10.0
This commit is contained in:
litetex 2022-07-24 15:02:08 +02:00 committed by GitHub
commit dcb332e08d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -135,7 +135,7 @@ public final class DownloaderImpl extends Downloader {
RequestBody requestBody = null;
if (dataToSend != null) {
requestBody = RequestBody.create(null, dataToSend);
requestBody = RequestBody.create(dataToSend);
}
final okhttp3.Request.Builder requestBuilder = new okhttp3.Request.Builder()