This commit is contained in:
zadam
2023-06-30 11:18:34 +02:00
parent fc564f6aed
commit 192e399cb5
77 changed files with 160 additions and 159 deletions

View File

@@ -76,7 +76,7 @@ async function importOpml(taskContext, fileBuffer, parentNote) {
for (const outline of outlines) {
const note = importOutline(outline, parentNote.noteId);
// first created note will be activated after import
// the first created note will be activated after import
returnNote = returnNote || note;
}

View File

@@ -145,7 +145,7 @@ async function importZip(taskContext, fileBuffer, importRootNote) {
} else if (parentPath in createdPaths) {
parentNoteId = createdPaths[parentPath];
} else {
// ZIP allows creating out of order records - i.e., file in a directory can appear in the ZIP stream before actual directory
// ZIP allows creating out of order records - i.e., file in a directory can appear in the ZIP stream before the actual directory
parentNoteId = saveDirectory(parentPath);
}
}