Skip to content

Commit

Permalink
don't urlencode in error case either
Browse files Browse the repository at this point in the history
  • Loading branch information
pliablepixels committed Apr 17, 2020
1 parent 06078b3 commit 4c38f6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2160,7 +2160,7 @@ angular.module('zmApp', [
options.skipIntercept = true;
// nvr.debug ("cordova: intercept got url "+url);
//nvr.debug ("cordova: intercept url after encode "+encodeURI(url));
cordova.plugin.http.sendRequest(encodeURI(url), options,
cordova.plugin.http.sendRequest(url, options,
function (succ) {
d.resolve(succ);
return d.promise;
Expand Down

0 comments on commit 4c38f6d

Please sign in to comment.