Added catch on fail resize
This commit is contained in:
parent
2c03395371
commit
3e466925d6
1 changed files with 10 additions and 8 deletions
|
@ -24,15 +24,17 @@ class Resize {
|
|||
return false
|
||||
}
|
||||
|
||||
resizeImg(data, this.size).then(buf => {
|
||||
fs.writeFile(output, buf, (err) => {
|
||||
if (err) {
|
||||
callback(err, null)
|
||||
return false
|
||||
}
|
||||
callback(null, { input: input, output: output, size: this.size })
|
||||
resizeImg(data, this.size)
|
||||
.then(buf => {
|
||||
fs.writeFile(output, buf, (err) => {
|
||||
if (err) {
|
||||
callback(err, null)
|
||||
return false
|
||||
}
|
||||
callback(null, { input: input, output: output, size: this.size })
|
||||
})
|
||||
})
|
||||
})
|
||||
.catch(callback)
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue