mirror of
https://git.sr.ht/~cadence/bibliogram
synced 2025-11-19 20:56:31 +00:00
Listen for sharp errors
This commit is contained in:
parent
a668547735
commit
608b3a34fc
1 changed files with 3 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue