зеркало из https://github.com/mozilla/pjs.git
Bug 372040 - nodeIsLivemarkItem asserts for separators. r=dietrich.
This commit is contained in:
Родитель
8872fe3171
Коммит
3c6bc531aa
|
@ -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");
|
||||
},
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче