1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-07 02:25:51 +01:00

Fix bookmarks.isBookmarked so we don't get spurious hearts in the status line.

This commit is contained in:
Kris Maglione
2009-09-21 16:24:52 -04:00
parent b5be9418bb
commit 383d4b635a

View File

@@ -606,8 +606,7 @@ function Bookmarks() //{{{
{
try
{
let uri = util.newURI(url);
return (bookmarksService.getBookmarkedURIFor(uri) != null);
return bookmarksService.isBookmarked(util.newURI(url));
}
catch (e)
{