We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20a8c55 + 2f1e039 commit 08a7d35Copy full SHA for 08a7d35
s3direct/static/s3direct/js/scripts.js
@@ -35,7 +35,7 @@
35
var parseURL = function(text) {
36
var xml = new DOMParser().parseFromString(text, 'text/xml'),
37
tag = xml.getElementsByTagName('Location')[0],
38
- url = tag.childNodes[0].nodeValue
+ url = decodeURIComponent(tag.childNodes[0].nodeValue)
39
40
return url;
41
}
0 commit comments