1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 18:14:12 +01:00

Fix history cache

This commit is contained in:
Kris Maglione
2008-10-12 21:40:23 +00:00
parent 3c4d1a5233
commit 45a1334cc0

View File

@@ -564,7 +564,7 @@ liberator.History = function () //{{{
var node = rootNode.getChild(i);
// liberator.dump("History child " + node.itemId + ": " + node.title + " - " + node.type);
if (node.type == node.RESULT_TYPE_URI) // just make sure it's a bookmark
history.push([node.url, node.title || "[No title]", getIcon(node.uri)]);
history.push([node.uri, node.title || "[No title]", getIcon(node.uri)]);
}
// close a container after using it!