mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 18:32:41 +00:00
12 lines
312 B
JavaScript
12 lines
312 B
JavaScript
module.exports = (req, res, next)=>{
|
|
const isImageRequest = req.get('Accept')?.split(',')
|
|
?.filter((h)=>!h.includes('q='))
|
|
?.every((h)=>/image\/.*/.test(h));
|
|
if(isImageRequest) {
|
|
return res.status(406).send({
|
|
message : 'Request for image at this URL is not supported'
|
|
});
|
|
}
|
|
|
|
next();
|
|
}; |