fix variable reference

This commit is contained in:
Joseph Canero 2017-10-03 17:02:34 -04:00
parent 79f1b26983
commit 8519b3c5dd

View file

@ -124,9 +124,9 @@ module.exports = function (options, repo, params, id, reportTiles, reportFont) {
console.log("new parsed url:", parsedUrl);
console.log(url.format(parsedUrl));
console.log(nodeUrl.format(parsedUrl));
return url.format(parsedUrl);
return nodeUrl.format(parsedUrl);
}
};