Bug 372040 - nodeIsLivemarkItem asserts for separators. r=dietrich.

This commit is contained in:
mozilla.mano%sent.com 2007-02-28 00:43:50 +00:00
Родитель 8872fe3171
Коммит 3c6bc531aa
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -324,7 +324,11 @@ var PlacesUtils = {
nodeIsLivemarkItem: function PU_nodeIsLivemarkItem(aNode) {
NS_ASSERT(aNode, "null node");
return this.annotations.hasAnnotation(this._uri(aNode.uri),
var uri = aNode.uri;
if (!uri)
return false;
return this.annotations.hasAnnotation(this._uri(uri),
"livemark/bookmarkFeedURI");
},