Fix argument double encoding on file download

Disable argument encoding in get request
This commit is contained in:
Bastien Marsaud
2018-10-18 12:33:05 +02:00
parent f0e1522982
commit 6fcf4dc8eb
@@ -31,7 +31,7 @@ class CordovaHttpDownload extends CordovaHttp implements Runnable {
@Override
public void run() {
try {
HttpRequest request = HttpRequest.get(this.getUrlString(), this.getParamsMap(), true);
HttpRequest request = HttpRequest.get(this.getUrlString(), this.getParamsMap(), false);
this.prepareRequest(request);