allow import of multiple files at the same time

This commit is contained in:
zadam
2019-02-24 09:34:50 +01:00
parent 936f85c09e
commit 886ea6c68c
8 changed files with 46 additions and 48 deletions

View File

@@ -21,7 +21,6 @@ async function importMarkdown(importContext, file, parentNote) {
});
importContext.increaseProgressCount();
importContext.importFinished(note.noteId);
return note;
}
@@ -36,7 +35,6 @@ async function importHtml(importContext, file, parentNote) {
});
importContext.increaseProgressCount();
importContext.importFinished(note.noteId);
return note;
}