This commit is contained in:
zadam
2020-12-22 22:30:04 +01:00
parent 1f3d73b9fd
commit b0b2951ff6
2 changed files with 3 additions and 8 deletions

View File

@@ -23,11 +23,7 @@ function exportBranch(req, res) {
try {
if (type === 'subtree' && (format === 'html' || format === 'markdown')) {
const start = Date.now();
zipExportService.exportToZip(taskContext, branch, format, res);
console.log("Export took", Date.now() - start, "ms");
}
else if (type === 'single') {
singleExportService.exportSingleNote(taskContext, branch, format, res);