1
0
mirror of https://git.sr.ht/~cadence/bibliogram synced 2024-09-28 23:07:30 +00:00

Listen for sharp errors

This commit is contained in:
Cadence Fish 2020-02-18 14:10:04 +13:00
parent a668547735
commit 608b3a34fc
No known key found for this signature in database
GPG Key ID: 81015DF9AA8607E1

View File

@ -38,6 +38,9 @@ module.exports = [
*/
return request(verifyResult.url, {}, {log: false}).then(res => {
const converter = sharp().resize(width, width, {position: "entropy"})
converter.on("error", error => {
console.error("Sharp instance emitted an error:", error)
})
return {
statusCode: 200,
contentType: "image/jpeg",