ImportHandler: early return via DeMorgan's law

Inverted a boolean condition, no functional changes.
pull/3509/head
muxator 2018-10-31 23:09:27 +01:00
parent 395db73eb1
commit 9d104cc4b0
1 changed files with 23 additions and 21 deletions

View File

@ -158,7 +158,12 @@ exports.doImport = function(req, res, padId)
}, },
//convert file to html //convert file to html
function(callback) { function(callback) {
if(!importHandledByPlugin && !directDatabaseAccess){ if (importHandledByPlugin || directDatabaseAccess) {
callback();
return;
}
var fileEnding = path.extname(srcFile).toLowerCase(); var fileEnding = path.extname(srcFile).toLowerCase();
var fileIsHTML = (fileEnding === ".html" || fileEnding === ".htm"); var fileIsHTML = (fileEnding === ".html" || fileEnding === ".htm");
var fileIsTXT = (fileEnding === ".txt"); var fileIsTXT = (fileEnding === ".txt");
@ -178,9 +183,6 @@ exports.doImport = function(req, res, padId)
// if no convertor only rename // if no convertor only rename
fs.rename(srcFile, destFile, callback); fs.rename(srcFile, destFile, callback);
} }
}else{
callback();
}
}, },
function(callback) { function(callback) {