Bug 341981 sporadic 'engine has no properties' error on startup, r=gavin

This commit is contained in:
jminta%gmail.com 2006-07-05 23:42:12 +00:00
Родитель 73c3cf0977
Коммит 0b5cc11655
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -2134,6 +2134,9 @@ SearchService.prototype = {
}
}
// Filter out any nulls for engines that may have been removed
this._sortedEngines = this._sortedEngines.filter(function(a) { return !!a; });
// Array for the remaining engines, alphabetically sorted
var alphaEngines = [];