prevent double res.send/json if error occurs in profile image upload

v1.18.x
Baris Soner Usakli 11 years ago
parent 2d384a68d2
commit 0d26b21a2c

@ -176,23 +176,25 @@ var fs = require('fs'),
user.setUserField(uid, 'picture', imageUrl);
if (convertToPNG && extension !== '.png') {
im.convert([uploadPath, 'png:-'],
function(err, stdout){
if (err) {
winston.err(err);
res.send({
error: 'Unable to convert image to PNG.'
});
return;
}
fs.writeFileSync(uploadPath, stdout, 'binary');
im.convert([uploadPath, 'png:-'], function(err, stdout) {
if (err) {
winston.err(err);
res.send({
error: 'Unable to convert image to PNG.'
});
return;
}
fs.writeFileSync(uploadPath, stdout, 'binary');
res.json({
path: imageUrl
});
});
} else {
res.json({
path: imageUrl
});
}
res.json({
path: imageUrl
});
}
if(extension === '.gif') {

Loading…
Cancel
Save