Update:Author image from cache API status codes

This commit is contained in:
advplyr 2022-11-16 15:32:32 -06:00
parent 3316394f5c
commit c7794e00f6

View File

@ -139,14 +139,14 @@ class CacheManager {
stream.pipeline(r, ps, (err) => {
if (err) {
console.log(err)
return res.sendStatus(400)
return res.sendStatus(500)
}
})
return ps.pipe(res)
}
let writtenFile = await resizeImage(author.imagePath, path, width, height)
if (!writtenFile) return res.sendStatus(400)
if (!writtenFile) return res.sendStatus(500)
// Set owner and permissions of cache image
await filePerms.setDefault(path)