Merge remote-tracking branch 'origin/master'

This commit is contained in:
zadam 2022-01-16 22:17:10 +01:00
commit 1aff3db81f

View File

@ -52,13 +52,13 @@ function exportToZip(taskContext, branch, format, res) {
function getDataFileName(note, baseFileName, existingFileNames) {
let fileName = baseFileName;
let existingExtension = path.extname(fileName).toLowerCase();
let newExtension;
if (fileName.length > 30) {
fileName = fileName.substr(0, 30);
}
let existingExtension = path.extname(fileName).toLowerCase();
let newExtension;
// following two are handled specifically since we always want to have these extensions no matter the automatic detection
// and/or existing detected extensions in the note name
if (note.type === 'text' && format === 'markdown') {