Merge pull request #1645 from ether/fix/import-without-files

Don't break the whole server if an import failed because no files were u...
pull/1644/merge
John McLear 2013-03-19 10:41:32 -07:00
commit 588fd399cd
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ exports.doImport = function(req, res, padId)
form.parse(req, function(err, fields, files) {
//the upload failed, stop at this point
if(err || files.file === undefined) {
console.warn("Uploading Error: " + err.stack);
if(err) console.warn("Uploading Error: " + err.stack);
callback("uploadFailed");
}
//everything ok, continue