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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user