1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-11-10 04:02:59 +00:00

Update OkHttp to 4.x

This commit is contained in:
TacoTheDank
2022-07-14 03:23:45 -04:00
parent 70e3c9805a
commit c1e78cf55b
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()