fix issue comparison when checking if a url includes a key domain
This commit is contained in:
parent
bde0b97935
commit
1a512fc260
1 changed files with 16 additions and 16 deletions
|
@ -75,7 +75,7 @@ module.exports = function(options, repo, params, id, reportTiles, reportFont) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (url.includes(keyDomain) === 0) {
|
if (url.includes(keyDomain)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue