ImportHandler: flattened code

Removed redundant else, no functional changes
pull/3509/head
muxator 2018-10-31 23:16:20 +01:00
parent fb552b2dbb
commit f652ba8c52
1 changed files with 2 additions and 2 deletions

View File

@ -181,9 +181,9 @@ exports.doImport = function(req, res, padId)
if(err) {
console.warn("Converting Error:", err);
return callback("convertFailed");
} else {
callback();
}
callback();
});
},