mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-05 11:15:46 +01:00
Fix typo. Closes issue #802.
This commit is contained in:
@@ -105,8 +105,8 @@ var BookmarkCache = Module("BookmarkCache", XPCOM(Ci.nsINavBookmarkObserver), {
|
|||||||
let uri = newURI(node.uri);
|
let uri = newURI(node.uri);
|
||||||
let keyword = services.bookmarks.getKeywordForBookmark(node.itemId);
|
let keyword = services.bookmarks.getKeywordForBookmark(node.itemId);
|
||||||
|
|
||||||
let tags = tags in node ? (node.tags ? node.tags.split(/, /g) : [])
|
let tags = "tags" in node ? (node.tags ? node.tags.split(/, /g) : [])
|
||||||
: services.tagging.getTagsForURI(uri, {}) || [];
|
: services.tagging.getTagsForURI(uri, {}) || [];
|
||||||
|
|
||||||
let post = BookmarkCache.getAnnotation(node.itemId, this.POST);
|
let post = BookmarkCache.getAnnotation(node.itemId, this.POST);
|
||||||
let charset = BookmarkCache.getAnnotation(node.itemId, this.CHARSET);
|
let charset = BookmarkCache.getAnnotation(node.itemId, this.CHARSET);
|
||||||
|
|||||||
Reference in New Issue
Block a user