From 8de6c9d8df97bc346ebb2c3df2c9fbc3283570c1 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 25 Nov 2008 00:05:03 +0000 Subject: [PATCH] Fix bookmark favicons --- content/bookmarks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/bookmarks.js b/content/bookmarks.js index f3c9bbe1..20c8b7db 100644 --- a/content/bookmarks.js +++ b/content/bookmarks.js @@ -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, node.icon, keyword, tags, node.itemId)); + return bookmarks.push(new Bookmark(node.uri, node.title, node.icon && node.icon.spec, keyword, tags, node.itemId)); } function readBookmark(id)