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

Get bookmark favicon from Places where possible.

This commit is contained in:
Kris Maglione
2008-11-22 22:22:06 +00:00
parent b895fa27b2
commit d3449c2f50

View File

@@ -77,7 +77,7 @@ function Bookmarks() //{{{
let keyword = bookmarksService.getKeywordForBookmark(node.itemId);
let tags = taggingService.getTagsForURI(uri, {}) || [];
return bookmarks.push(new Bookmark(node.uri, node.title, null, keyword, tags, node.itemId));
return bookmarks.push(new Bookmark(node.uri, node.title, node.icon, keyword, tags, node.itemId));
}
function readBookmark(id)