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
commit
588fd399cd
|
@ -60,7 +60,7 @@ exports.doImport = function(req, res, padId)
|
||||||
form.parse(req, function(err, fields, files) {
|
form.parse(req, function(err, fields, files) {
|
||||||
//the upload failed, stop at this point
|
//the upload failed, stop at this point
|
||||||
if(err || files.file === undefined) {
|
if(err || files.file === undefined) {
|
||||||
console.warn("Uploading Error: " + err.stack);
|
if(err) console.warn("Uploading Error: " + err.stack);
|
||||||
callback("uploadFailed");
|
callback("uploadFailed");
|
||||||
}
|
}
|
||||||
//everything ok, continue
|
//everything ok, continue
|
||||||
|
|
Loading…
Reference in New Issue