Mickael Magniez created CB-11874:
------------------------------------
Summary: useChunkedMode forced when uploading to https
Key: CB-11874
URL: https://issues.apache.org/jira/browse/CB-11874
Project: Apache Cordova
Issue Type: Bug
Components: Plugin File Transfer
Environment: android
Reporter: Mickael Magniez
Hi,
Since commit 9347606dd33fe07ea36799b4dd28804019c68835 resolving issue CB-10974,
useChunkedMode is forced when uploading to https.
This prevents uploading to amazon s3 using https.
Before :
{code}
boolean useChunkedMode = chunkedMode && (Build.VERSION.SDK_INT <
Build.VERSION_CODES.FROYO || useHttps);
{code}
After:
{code}
boolean useChunkedMode = chunkedMode || (Build.VERSION.SDK_INT <
Build.VERSION_CODES.FROYO || useHttps);
{code}
Best regards
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]