mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-18 05:15:46 +01:00
Only explicitly demangle subscript URIs rather than doing it automatically in newURI. Closes issue #185.
This commit is contained in:
@@ -183,7 +183,7 @@ var BookmarkCache = Module("BookmarkCache", XPCOM(Ci.nsINavBookmarkObserver), {
|
||||
let bookmark = this.bookmarks[itemId];
|
||||
if (bookmark) {
|
||||
if (property == "tags")
|
||||
value = services.tagging.getTagsForURI(util.newURI(bookmark.url), {});
|
||||
value = services.tagging.getTagsForURI(bookmark.uri, {});
|
||||
if (property in bookmark) {
|
||||
bookmark[bookmark.members[property]] = value;
|
||||
storage.fireEvent(name, "change", { __proto__: bookmark, changed: property });
|
||||
|
||||
Reference in New Issue
Block a user