This commit is contained in:
Collin M. Barrett 2017-02-24 16:04:02 -06:00
parent a91ec06090
commit 2c4f6d67c8

View file

@ -48,7 +48,7 @@ function encodeUrlArray(urlArray) {
return urlArray;
} else {
if (urlArray) {
return encodeURIComponent(urlArray);
return encodeURI(urlArray);
} else {
return "";
}