1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-15 18:56:22 +00:00

Merge pull request #611 from asmsuechan/error-handling-for-loading-notes

Fix errorhandling on cases of invalid notes
This commit is contained in:
SuenagaRyota
2017-06-16 21:09:48 +09:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ function init () {
.then((notes) => {
let unknownCount = 0
notes.forEach((note) => {
if (!storage.folders.some((folder) => note.folder === folder.key)) {
if (note && !storage.folders.some((folder) => note.folder === folder.key)) {
unknownCount++
storage.folders.push({
key: note.folder,

View File

@@ -28,7 +28,6 @@ function resolveStorageNotes (storage) {
return data
} catch (err) {
console.error(notePath)
throw err
}
})