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

[muttator] fixed lots of problems with the latest thunderbird nightly. Might break muttator for older thunderbirds though

This commit is contained in:
Martin Stubenschrott
2008-11-18 20:13:49 +00:00
parent a4072000c9
commit e9608cccaf
3 changed files with 33 additions and 38 deletions

View File

@@ -73,7 +73,8 @@ function Bookmarks() //{{{
let uri = ioService.newURI(node.uri, null, null);
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, null, keyword, tags, node.itemId));
return bookmarks.push({url: node.uri, title: node.title, icon: null, keyword: keyword, tags: tags, id: node.itemId});
}
function readBookmark(id)
@@ -735,6 +736,7 @@ function History() //{{{
return {
load: function() { load(); }, // temporary only, for performance testing
get: function (filter)
{
if (!placesHistory)