Skip to content

Commit

Permalink
Bugfix: Stripping of bookmarks works again
Browse files Browse the repository at this point in the history
  • Loading branch information
vaeth committed Nov 30, 2017
1 parent 2f80759 commit 9f1a914
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ChangeLog for squashmount

*bookmarkdupes-2.3:
- Serious bugfix: Stripping of bookmarks now works again

*bookmarkdupes-2.2:
Henaro aka Ironwool:
- Create uk locales
Expand Down
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function removeFolder(id, callback, errorCallback) {
}

function stripBookmark(id, callback, errorCallback) {
return browser.bookmarks.create(bookmarkIds[id]).then(function () {
return browser.bookmarks.create(bookmarkIds.get(id)).then(function () {
browser.bookmarks.remove(id).then(callback, errorCallback);
}, errorCallback);
}
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"short_name": "bookmarkdupes",
"description": "__MSG_extensionDescription__",
"author": "Martin Väth",
"version": "2.2",
"version": "2.3",
"manifest_version": 2,
"homepage_url": "https://github.com/vaeth/bookmarkdupes.git",
"default_locale": "en",
Expand Down

0 comments on commit 9f1a914

Please sign in to comment.