test for hidden scripts before shortening
This commit is contained in:
Родитель
9084c796a9
Коммит
a72e303023
|
@ -176,9 +176,9 @@ exports.create = function (conn, debuggerPort, config) {
|
||||||
}
|
}
|
||||||
scripts.forEach(function(s) {
|
scripts.forEach(function(s) {
|
||||||
var hidden;
|
var hidden;
|
||||||
s.url = shorten(s.path);
|
|
||||||
hidden = config.hidden &&
|
hidden = config.hidden &&
|
||||||
config.hidden.some(function(r) { return r.test(s.url); });
|
config.hidden.some(function(r) { return r.test(s.url); });
|
||||||
|
s.url = shorten(s.path);
|
||||||
sourceIDs[s.sourceID] = { url: s.url, hidden: hidden };
|
sourceIDs[s.sourceID] = { url: s.url, hidden: hidden };
|
||||||
delete s.path;
|
delete s.path;
|
||||||
if (!hidden) {
|
if (!hidden) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче