Fix incorrect parenthesis (#108)
This commit is contained in:
parent
4992bc4194
commit
5c1d396ed2
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ module.exports = function(options, repo, params, id, reportTiles, reportFont) {
|
|||
|
||||
app.get('/' + id + '.json', function(req, res, next) {
|
||||
var fixUrl = function(url, opt_nokey, opt_nostyle) {
|
||||
if (!url || (typeof url !== 'string') || url.indexOf('local://' !== 0)) {
|
||||
if (!url || (typeof url !== 'string') || url.indexOf('local://') !== 0) {
|
||||
return url;
|
||||
}
|
||||
var queryParams = [];
|
||||
|
|
Loading…
Reference in a new issue