mirror of
https://github.com/nextcloud/android.git
synced 2024-11-21 20:55:31 +03:00
Merge pull request #13232 from dipshit-enterprises/patch-1
Set content length to -1 for InputStream request bodies from the nextcloud/Android-SingleSignOn library
This commit is contained in:
commit
4ded07f57d
1 changed files with 3 additions and 3 deletions
|
@ -237,7 +237,7 @@ public class InputStreamBinder extends IInputStreamService.Stub {
|
|||
case "POST":
|
||||
method = new PostMethod(requestUrl);
|
||||
if (requestBodyInputStream != null) {
|
||||
RequestEntity requestEntity = new InputStreamRequestEntity(requestBodyInputStream);
|
||||
RequestEntity requestEntity = new InputStreamRequestEntity(requestBodyInputStream, -1);
|
||||
((PostMethod) method).setRequestEntity(requestEntity);
|
||||
} else if (request.getRequestBody() != null) {
|
||||
StringRequestEntity requestEntity = new StringRequestEntity(
|
||||
|
@ -251,7 +251,7 @@ public class InputStreamBinder extends IInputStreamService.Stub {
|
|||
case "PATCH":
|
||||
method = new PatchMethod(requestUrl);
|
||||
if (requestBodyInputStream != null) {
|
||||
RequestEntity requestEntity = new InputStreamRequestEntity(requestBodyInputStream);
|
||||
RequestEntity requestEntity = new InputStreamRequestEntity(requestBodyInputStream, -1);
|
||||
((PatchMethod) method).setRequestEntity(requestEntity);
|
||||
} else if (request.getRequestBody() != null) {
|
||||
StringRequestEntity requestEntity = new StringRequestEntity(
|
||||
|
@ -265,7 +265,7 @@ public class InputStreamBinder extends IInputStreamService.Stub {
|
|||
case "PUT":
|
||||
method = new PutMethod(requestUrl);
|
||||
if (requestBodyInputStream != null) {
|
||||
RequestEntity requestEntity = new InputStreamRequestEntity(requestBodyInputStream);
|
||||
RequestEntity requestEntity = new InputStreamRequestEntity(requestBodyInputStream, -1);
|
||||
((PutMethod) method).setRequestEntity(requestEntity);
|
||||
} else if (request.getRequestBody() != null) {
|
||||
StringRequestEntity requestEntity = new StringRequestEntity(
|
||||
|
|
Loading…
Reference in a new issue