Added catch on fail resize

This commit is contained in:
dbroqua 2019-03-12 22:41:45 +01:00
parent 2c03395371
commit 3e466925d6

View file

@ -24,15 +24,17 @@ class Resize {
return false return false
} }
resizeImg(data, this.size).then(buf => { resizeImg(data, this.size)
fs.writeFile(output, buf, (err) => { .then(buf => {
if (err) { fs.writeFile(output, buf, (err) => {
callback(err, null) if (err) {
return false callback(err, null)
} return false
callback(null, { input: input, output: output, size: this.size }) }
callback(null, { input: input, output: output, size: this.size })
})
}) })
}) .catch(callback)
}) })
} }