bookmark-stack

web extension to save pages in a stack for reading them later  https://addons.mozilla.org/firefox/addon/bookmark-stack/
git clone https://git.ce9e.org/bookmark-stack.git

commit
3235ede84c70a01c56d23826461d1ef166334ac8
parent
a11131424a892e14cdca690535953fcd0f4055cd
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2018-02-15 19:02
fix initial folder creation

Diffstat

M shared.js 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/shared.js b/shared.js

@@ -27,7 +27,7 @@ var ensureFolder = function(callback) {
   27    27 			var folder = children.find(child => child.title === FOLDER_TITLE);
   28    28 			if (!folder) {
   29    29 				chrome.bookmarks.create({
   30    -1 					parentId: parentId,
   -1    30 					parentId: root.id,
   31    31 					title: FOLDER_TITLE,
   32    32 				}, callback);
   33    33 			} else {