added progress also to export

This commit is contained in:
zadam
2019-02-10 22:30:55 +01:00
parent a097cefba7
commit 6be8a3f343
14 changed files with 147 additions and 35 deletions

View File

@@ -20,7 +20,7 @@ async function importMarkdown(importContext, file, parentNote) {
mime: 'text/html'
});
importContext.increaseCount();
importContext.increaseProgressCount();
importContext.importFinished(note.noteId);
return note;
@@ -35,7 +35,7 @@ async function importHtml(importContext, file, parentNote) {
mime: 'text/html'
});
importContext.increaseCount();
importContext.increaseProgressCount();
importContext.importFinished(note.noteId);
return note;