mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-04 18:04:12 +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 keyword = services.bookmarks.getKeywordForBookmark(node.itemId);
|
||||
|
||||
let tags = tags in node ? (node.tags ? node.tags.split(/, /g) : [])
|
||||
: services.tagging.getTagsForURI(uri, {}) || [];
|
||||
let tags = "tags" in node ? (node.tags ? node.tags.split(/, /g) : [])
|
||||
: services.tagging.getTagsForURI(uri, {}) || [];
|
||||
|
||||
let post = BookmarkCache.getAnnotation(node.itemId, this.POST);
|
||||
let charset = BookmarkCache.getAnnotation(node.itemId, this.CHARSET);
|
||||
|
||||
Reference in New Issue
Block a user