use non-decodable url
This commit is contained in:
parent
a3f3c4b041
commit
76b3d8c7d1
2
index.js
2
index.js
|
@ -39,7 +39,7 @@ module.exports = function (opts) {
|
|||
try {
|
||||
encodedLocation = decodeURIComponent(newLocation);
|
||||
} catch(e) {
|
||||
encodedLocation = "#/error/?error_message=" + e.toString();
|
||||
encodedLocation = newLocation; // "#/error/?error_message=" + e.toString();
|
||||
}
|
||||
var body = opts.body
|
||||
.replace(/{{\s*HTML_URL\s*}}/ig, escapeHtml(encodedLocation))
|
||||
|
|
Loading…
Reference in New Issue