Listen for sharp errors
This commit is contained in:
@@ -38,6 +38,9 @@ module.exports = [
|
|||||||
*/
|
*/
|
||||||
return request(verifyResult.url, {}, {log: false}).then(res => {
|
return request(verifyResult.url, {}, {log: false}).then(res => {
|
||||||
const converter = sharp().resize(width, width, {position: "entropy"})
|
const converter = sharp().resize(width, width, {position: "entropy"})
|
||||||
|
converter.on("error", error => {
|
||||||
|
console.error("Sharp instance emitted an error:", error)
|
||||||
|
})
|
||||||
return {
|
return {
|
||||||
statusCode: 200,
|
statusCode: 200,
|
||||||
contentType: "image/jpeg",
|
contentType: "image/jpeg",
|
||||||
|
|||||||
Reference in New Issue
Block a user