Bug 452958 - Livemarks service does not show children with empty titles, r=dietrich

This commit is contained in:
Simon Wagner 2008-09-04 19:00:18 +02:00
Родитель 04d6289f48
Коммит d4f2b2ffe9
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -556,9 +556,7 @@ LivemarkLoadListener.prototype = {
if (!href)
continue;
let title = entry.title ? entry.title.plainText() : entry.updated;
if (!title)
continue;
let title = entry.title ? entry.title.plainText() : "";
try {
secMan.checkLoadURIWithPrincipal(feedPrincipal, href, SEC_FLAGS);