test for hidden scripts before shortening

This commit is contained in:
Danny Coates 2010-11-22 18:13:37 -07:00
Родитель 9084c796a9
Коммит a72e303023
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -176,9 +176,9 @@ exports.create = function (conn, debuggerPort, config) {
}
scripts.forEach(function(s) {
var hidden;
s.url = shorten(s.path);
hidden = config.hidden &&
config.hidden.some(function(r) { return r.test(s.url); });
s.url = shorten(s.path);
sourceIDs[s.sourceID] = { url: s.url, hidden: hidden };
delete s.path;
if (!hidden) {