1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 10:32:27 +01:00

Fix bookmark icon loading.

This commit is contained in:
Doug Kearns
2015-06-17 13:21:43 +10:00
parent 079277f28b
commit 422fc6b9b7

View File

@@ -118,7 +118,7 @@ var BookmarkCache = Module("BookmarkCache", XPCOM(Ci.nsINavBookmarkObserver), {
let post = BookmarkCache.getAnnotation(node.itemId, this.POST);
let charset = BookmarkCache.getAnnotation(node.itemId, this.CHARSET);
return Bookmark(node.uri, node.title, node.icon && node.icon.spec, post, keyword, tags, charset, node.itemId);
return Bookmark(node.uri, node.title, node.icon, post, keyword, tags, charset, node.itemId);
},
annotate: function (id, key, val, timespan) {