We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 364999a commit c9d4d8fCopy full SHA for c9d4d8f
src/lib/LocalTree.ts
@@ -122,7 +122,7 @@ export default class LocalTree implements IResource {
122
try {
123
await this.queue.add(() => browser.bookmarks.remove(bookmarkId))
124
} catch (e) {
125
- throw new Error('Could not remove ' + bookmark.inspect() + ': ' + e.message)
+ Logger.log('Could not remove ' + bookmark.inspect() + ': ' + e.message + '\n Moving on')
126
}
127
128
@@ -178,7 +178,7 @@ export default class LocalTree implements IResource {
178
179
await this.queue.add(() => browser.bookmarks.removeTree(id))
180
181
- throw new Error('Could not remove ' + folder.inspect() + ': ' + e.message)
+ Logger.log('Could not remove ' + folder.inspect() + ': ' + e.message + '\n Moving on.')
182
183
184
0 commit comments