Merge pull request #157 from TheZopo/double-arg-encoding-fix

Fix argument double encoding on file download
This commit is contained in:
Sefa Ilkimen
2018-11-25 23:06:04 +01:00
committed by GitHub
@@ -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);