From 1625cbbd4cccc73ce90996a5b4d0de04fa2a7862 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 1 Jun 2011 17:27:30 -0400 Subject: [PATCH] Fix :history icons in recent Firefox versions. Closes issue #552. --- common/content/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/history.js b/common/content/history.js index f41dd860..a4bb2838 100644 --- a/common/content/history.js +++ b/common/content/history.js @@ -41,7 +41,7 @@ var History = Module("history", { return { url: node.uri, title: node.title, - icon: node.icon ? node.icon.spec : DEFAULT_FAVICON + icon: node.icon ? node.icon : DEFAULT_FAVICON }; }).toArray(); root.containerOpen = false; // close a container after using it!