Update nodeIsLivemarkItem util to the changes done in bug 372647. patch on bug 372647, r=dietrich.

This commit is contained in:
mozilla.mano%sent.com 2007-03-07 20:06:29 +00:00
Родитель 7cd30903d2
Коммит f538d2b83c
1 изменённых файлов: 6 добавлений и 7 удалений

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

@ -322,14 +322,13 @@ var PlacesUtils = {
* @returns true if the node is a livemark container item
*/
nodeIsLivemarkItem: function PU_nodeIsLivemarkItem(aNode) {
NS_ASSERT(aNode, "null node");
if (this.nodeIsBookmark(aNode)) {
var placeURI = this.bookmarks.getItemURI(aNode.bookmarkId);
if (this.annotations.hasAnnotation(placeURI, "livemark/bookmarkFeedURI"))
return true;
}
var uri = aNode.uri;
if (!uri)
return false;
return this.annotations.hasAnnotation(this._uri(uri),
"livemark/bookmarkFeedURI");
return false;
},
/**