Skip bugs where the signature field is not defined

This commit is contained in:
Marco Castelluccio 2016-10-15 00:18:40 +01:00
Родитель 02d51d740e
Коммит ecd9bff34a
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -139,6 +139,11 @@ function getComparison() {
return;
}
// Skip bugs where the cf_crash_signature field is not defined.
if ('bugs' in data && !('cf_crash_signature' in data['bugs'][0])) {
return;
}
let row = table.insertRow(table.rows.length);
let bugElem = row.insertCell(0);
let aElem = document.createElement('a');